From 1724f8a68f32f1b15f6b9fb48ac210639fdd3264 Mon Sep 17 00:00:00 2001 From: Andrettin <6322423+Andrettin@users.noreply.github.com> Date: Wed, 13 Aug 2025 11:17:55 +0200 Subject: [PATCH] Fixed IsUniqueMonsterValid() so that it doesn't wrongly return false for Zhar the Mad and the Warlord of Blood (#8104) --- Source/monsters/validation.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Source/monsters/validation.cpp b/Source/monsters/validation.cpp index 427ecbbe6..1818f5d8c 100644 --- a/Source/monsters/validation.cpp +++ b/Source/monsters/validation.cpp @@ -55,10 +55,6 @@ bool IsUniqueMonsterValid(const Monster &monster) return false; } - if (uniqueMonsterData.mlevel != 0 && uniqueMonsterData.mlevel != currlevel) { - return false; - } - return true; }