fixed a bug where a Player would destroy a Gap as PlayerBases do

This commit is contained in:
2016-05-14 10:44:36 +02:00
parent 7da9cf928e
commit 6c375f94bf
2 changed files with 1 additions and 1 deletions

View File

@ -20,6 +20,7 @@ public class PlayerBase implements Destroyable {
public void destroy() {
destroyed = true;
Game.instance.playerBaseDestroyed(this);
}
public Tile getCurrentTile() {