diff options
author | Subv <subv2112@gmail.com> | 2014-07-07 14:25:17 -0500 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2014-07-07 14:25:17 -0500 |
commit | 110396447f2f414f8834c1b86c764d97704537b7 (patch) | |
tree | 177f9dc0f504e0fe64784d955166835646f6287f /src/server/authserver/Main.cpp | |
parent | eeb272040101f246d191e81c9eab9ee0c70462da (diff) |
Fixed the authserver not accepting clients.
Fixed using hostnames in the realmlist table.
Diffstat (limited to 'src/server/authserver/Main.cpp')
-rw-r--r-- | src/server/authserver/Main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/authserver/Main.cpp b/src/server/authserver/Main.cpp index 39ad4b60dfe..1286e261a47 100644 --- a/src/server/authserver/Main.cpp +++ b/src/server/authserver/Main.cpp @@ -109,7 +109,7 @@ int main(int argc, char** argv) return 1; // Get the list of realms for the server - sRealmList.Initialize(sConfigMgr->GetIntDefault("RealmsStateUpdateDelay", 20)); + sRealmList.Initialize(_ioService, sConfigMgr->GetIntDefault("RealmsStateUpdateDelay", 20)); if (sRealmList.size() == 0) { |