v0.9.1: fixed DM-300 pathing oddly in some cases

This commit is contained in:
Evan Debenham 2020-12-05 19:43:38 -05:00
parent 7242fdbf60
commit 1f5ad491fd

View File

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