diff --git a/src/server/scripts/EasternKingdoms/Karazhan/boss_chess_event.cpp b/src/server/scripts/EasternKingdoms/Karazhan/boss_chess_event.cpp index 564c6a75d..c74f4e088 100644 --- a/src/server/scripts/EasternKingdoms/Karazhan/boss_chess_event.cpp +++ b/src/server/scripts/EasternKingdoms/Karazhan/boss_chess_event.cpp @@ -467,7 +467,7 @@ struct npc_echo_of_medivh : public ScriptedAI break; } - if (newRow < MAX_ROW && newCol < MAX_COL && newRow >= 0 && newCol >= 0) + if (newRow < MAX_ROW && newCol < MAX_COL) if (Creature* targetPiece = ObjectAccessor::GetCreature(*me, _boards[newRow][newCol].pieceGUID)) if (!IsFriendly(piece, targetPiece)) return targetPiece;