v2.3.0: fixed sapper and geomancer not having 0 spawn weight

This commit is contained in:
Evan Debenham
2023-12-19 14:01:01 -05:00
parent e37ab84b2d
commit b5007169d1
2 changed files with 10 additions and 0 deletions

View File

@@ -154,6 +154,11 @@ public class GnollGeomancer extends Mob {
return true;
}
@Override
public float spawningWeight() {
return 0;
}
@Override
public boolean heroShouldInteract() {
return super.heroShouldInteract() || buff(RockArmor.class) != null;

View File

@@ -120,6 +120,11 @@ public class GnollSapper extends Mob {
return true;
}
@Override
public float spawningWeight() {
return 0;
}
@Override
protected boolean act() {
if (throwingRockFromPos != -1){