v0.9.2: fixed giant flying enemies not able to move over chasms
This commit is contained in:
parent
7b2fab9730
commit
c3a4cb4b56
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user