v0.9.0b: large chars can now approach targets they can't reach

This commit is contained in:
Evan Debenham 2020-10-12 20:48:46 -04:00
parent d618d185c5
commit bc03d17edc

View File

@ -786,7 +786,7 @@ public class Dungeon {
System.arraycopy( pass, 0, passable, 0, Dungeon.level.length() );
}
if (Char.hasProp(ch, Char.Property.LARGE)){
if (chars && Char.hasProp(ch, Char.Property.LARGE)){
BArray.and( pass, Dungeon.level.openSpace, passable );
}