Tile.hasBox() fixed.

This commit is contained in:
ericnerdo 2016-05-07 15:23:47 +02:00
parent f11adc2fab
commit c91a1d051c
1 changed files with 1 additions and 1 deletions

View File

@ -80,6 +80,6 @@ public abstract class Tile {
}
public boolean hasBox() {
return boxStack.isEmpty();
return !boxStack.isEmpty();
}
}