mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-19 00:58:26 +00:00
Change account parse delimiter [skip ci]
This commit is contained in:
@@ -264,7 +264,7 @@ void find_replace(std::string &string_subject, const std::string &search_string,
|
||||
|
||||
void ParseAccountString(const std::string &s, std::string &account, std::string &loginserver)
|
||||
{
|
||||
auto split = SplitString(s, '.');
|
||||
auto split = SplitString(s, ':');
|
||||
if (split.size() == 2) {
|
||||
loginserver = split[0];
|
||||
account = split[1];
|
||||
|
||||
Reference in New Issue
Block a user