fixed bug where Tiles would be replaced with Fields on PlayerBase.destroy()

This commit is contained in:
2016-05-14 16:16:59 +02:00
parent 55cae38f5f
commit 23271cc086
3 changed files with 26 additions and 14 deletions

View File

@ -11,6 +11,12 @@ public class Gap extends cicaprojekt.Tile {
return true;
}
@Override
public boolean isGap()
{
return true;
}
@Override
public void onEntry(PlayerBase playerBase) {
super.onEntry(playerBase);