Merge fixes

This commit is contained in:
Akkadius
2019-07-03 01:40:36 -05:00
parent 4e7bcd86ff
commit ea02042ace
5 changed files with 268 additions and 71 deletions
+1 -17
View File
@@ -360,20 +360,4 @@ void LoginServer::SendAccountUpdate(ServerPacket* pack) {
strn0cpy(s->worldpassword, LoginPassword.c_str(), 30);
SendPacket(pack);
}
}
bool LoginServer::Connected()
{
if (IsLegacy) {
if (legacy_client) {
return legacy_client->Connected();
}
}
else {
if (client) {
return client->Connected();
}
}
return false;
}
}