Browse Source

Fixed IsUniqueMonsterValid() so that it doesn't wrongly return false for Zhar the Mad and the Warlord of Blood (#8104)

pull/8111/head
Andrettin 7 months ago committed by GitHub
parent
commit
1724f8a68f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      Source/monsters/validation.cpp

4
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;
}

Loading…
Cancel
Save