From 5d4e53bb25fc8a1e2f26a2aef066500e071babf0 Mon Sep 17 00:00:00 2001 From: Ali Date: Fri, 17 Apr 2020 18:48:43 +0300 Subject: [PATCH] Removed redundant check during enter world --- world/client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/world/client.cpp b/world/client.cpp index 2d4b65e71..18f0aa776 100644 --- a/world/client.cpp +++ b/world/client.cpp @@ -714,7 +714,7 @@ bool Client::HandleEnterWorldPacket(const EQApplicationPacket *app) { EQApplicationPacket *outapp; uint32 tmpaccid = 0; charid = database.GetCharacterInfo(char_name, &tmpaccid, &zone_id, &instance_id); - if (charid == 0 || tmpaccid != GetAccountID()) { + if (charid == 0) { LogInfo("Could not get CharInfo for [{}]", char_name); eqs->Close(); return true;