Add BindDemonUnderling to IsPet check

This commit is contained in:
CarlPoppa
2026-02-23 09:10:02 +00:00
parent e1805d76ab
commit 1059ee7d3c

View File

@@ -162,7 +162,7 @@ func (m Monster) IsMerc() bool {
func (m Monster) IsPet() bool {
// Necromancer revive.
if m.States.HasState(state.Revive) || m.States.HasState(state.BindDemon) {
if m.States.HasState(state.Revive) || m.States.HasState(state.BindDemon) || m.States.HasState(state.BindDemonUnderling) {
return true
}