Working on stuck behavior handler, fix for world crash when you can't connect to a login server.

This commit is contained in:
KimLS
2018-11-09 18:30:05 -08:00
parent 8f0051db8d
commit 81b409a2e4
4 changed files with 80 additions and 17 deletions
+2 -2
View File
@@ -40,9 +40,9 @@ public:
void SendNewInfo();
void SendStatus();
void SendPacket(ServerPacket* pack) { if (IsLegacy) legacy_client->SendPacket(pack); else client->SendPacket(pack); }
void SendPacket(ServerPacket* pack);
void SendAccountUpdate(ServerPacket* pack);
bool Connected() { return IsLegacy ? legacy_client->Connected() : client->Connected(); }
bool Connected();
bool MiniLogin() { return minilogin; }
bool CanUpdate() { return CanAccountUpdate; }