v0.9.4: fixed succubi checking the wrong cell when blinking and large
This commit is contained in:
+1
-1
@@ -131,7 +131,7 @@ public class Succubus extends Mob {
|
|||||||
cell = route.collisionPos + n;
|
cell = route.collisionPos + n;
|
||||||
if (Dungeon.level.passable[cell]
|
if (Dungeon.level.passable[cell]
|
||||||
&& Actor.findChar( cell ) == null
|
&& Actor.findChar( cell ) == null
|
||||||
&& (!properties().contains(Property.LARGE) || Dungeon.level.openSpace[n])) {
|
&& (!properties().contains(Property.LARGE) || Dungeon.level.openSpace[cell])) {
|
||||||
candidates.add( cell );
|
candidates.add( cell );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user