handle act 1/3/5 mercs (#5)

This commit is contained in:
Héctor Giménez
2023-10-24 22:29:49 +09:00
committed by GitHub
parent cebb05a0df
commit 8ae0eb55c2
3 changed files with 25 additions and 22 deletions

View File

@@ -119,7 +119,7 @@ func (m Monster) IsImmune(resist stat.Resist) bool {
}
func (m Monster) IsMerc() bool {
if m.Name == npc.Guard {
if m.Name == npc.Guard || m.Name == npc.Act5Hireling1Hand || m.Name == npc.Act5Hireling2Hand || m.Name == npc.IronWolf || m.Name == npc.Rogue2 {
return true
}