Fix in exception for werwolf/werebear (magic numbers)

This commit is contained in:
2023-09-02 16:28:16 -04:00
parent af4c3819b9
commit 4427dbdcad
+1 -1
View File
@@ -326,7 +326,7 @@ public class MobAI {
// exception allowing werewolf and werebear guard captains to cast
if (Enum.MinionType.ContractToMinionMap.get(contractID).isMage() == false && contractID != 980111 && contractID != 980110)
if (Enum.MinionType.ContractToMinionMap.get(contractID).isMage() == false && contractID != 980103 && contractID != 980104)
return false;
}