v0.9.2: fixed giant flying enemies not able to move over chasms

This commit is contained in:
Evan Debenham 2021-01-21 18:32:19 -05:00
parent 7b2fab9730
commit c3a4cb4b56

View File

@ -787,7 +787,7 @@ public class Dungeon {
}
if (chars && Char.hasProp(ch, Char.Property.LARGE)){
BArray.and( pass, Dungeon.level.openSpace, passable );
BArray.and( passable, Dungeon.level.openSpace, passable );
}
if (chars) {
@ -816,7 +816,7 @@ public class Dungeon {
}
if (Char.hasProp(ch, Char.Property.LARGE)){
BArray.and( pass, Dungeon.level.openSpace, passable );
BArray.and( passable, Dungeon.level.openSpace, passable );
}
if (chars){
@ -841,7 +841,7 @@ public class Dungeon {
}
if (Char.hasProp(ch, Char.Property.LARGE)){
BArray.and( pass, Dungeon.level.openSpace, passable );
BArray.and( passable, Dungeon.level.openSpace, passable );
}
if (chars) {