v0.9.2: fixed supercharged DM-300 digging while not hunting

This commit is contained in:
Evan Debenham 2021-02-05 14:17:59 -05:00
parent 42d7d70fdb
commit c4bf878276

View File

@ -517,7 +517,7 @@ public class NewDM300 extends Mob {
return true;
} else {
if (!supercharged || rooted || target == pos || Dungeon.level.adjacent(pos, target)) {
if (!supercharged || state != HUNTING || rooted || target == pos || Dungeon.level.adjacent(pos, target)) {
return false;
}