v2.3.0: fixed gnoll sapper and geomancer being cleared by ankh revive

This commit is contained in:
Evan Debenham
2023-12-13 16:33:22 -05:00
parent f2955ebf7e
commit 55956e36bb
2 changed files with 10 additions and 0 deletions

View File

@@ -147,6 +147,11 @@ public class GnollGeomancer extends Mob {
return super.drRoll() + Random.NormalIntRange(0, 6);
}
@Override
public boolean reset() {
return true;
}
@Override
public boolean heroShouldInteract() {
return super.heroShouldInteract() || buff(RockArmor.class) != null;

View File

@@ -115,6 +115,11 @@ public class GnollSapper extends Mob {
return super.drRoll() + Random.NormalIntRange(0, 6);
}
@Override
public boolean reset() {
return true;
}
@Override
protected boolean act() {
if (throwingRockFromPos != -1){