Fixed Mercenary Depop Crash in Windows.

This commit is contained in:
Trevius 2014-12-02 00:07:09 -06:00
parent 24ea7a0d45
commit 52eb4d2d4e

View File

@ -5930,7 +5930,7 @@ Merc* Client::GetMerc() {
if(GetMercID() == 0) if(GetMercID() == 0)
{ {
if (MERC_DEBUG > 0) if (MERC_DEBUG > 0)
//Message(7, "Mercenary Debug: GetMerc 0."); Message(7, "Mercenary Debug: GetMerc 0.");
return (nullptr); return (nullptr);
} }
@ -5951,9 +5951,6 @@ Merc* Client::GetMerc() {
return (nullptr); return (nullptr);
} }
if (MERC_DEBUG > 0)
//Message(7, "Mercenary Debug: GetMerc Success.");
return (tmp); return (tmp);
} }