[Bug Fix] Fix Auto Login Issue (#4213)

* [Bug Fix] Fix Auto Login Issue

# Notes
- We were setting `live_name` value regardless of if we were zoning, causing us to automatically log in to the last character we'd logged in to before.

* Remove &
This commit is contained in:
Alex King
2024-03-28 09:48:17 -04:00
committed by GitHub
parent 52417023f8
commit f905ee70e4
3 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -986,7 +986,7 @@ bool Database::UpdateLiveChar(const std::string& name, uint32 account_id)
return AccountRepository::UpdateOne(*this, e);
}
const std::string& Database::GetLiveChar(uint32 account_id)
const std::string Database::GetLiveChar(uint32 account_id)
{
auto e = AccountRepository::FindOne(*this, account_id);