Huntable wird jetzt auch angezeigt

This commit is contained in:
2014-05-02 09:35:04 +02:00
parent 62e695db24
commit 2048f344c1

View File

@@ -92,11 +92,11 @@ namespace WorldOfPeacecraft
int posx = x * TileSize; int posx = x * TileSize;
int posy = y * TileSize; int posy = y * TileSize;
Color color; Color color;
if (tile.IsForest ()) { if (tile.IsHuntable ()) {
color = Color.Green; color = Color.DarkGreen;
} // Stupid parenthesis } // Stupid parenthesis
else if (tile.IsHuntable ()) { else if (tile.IsForest ()) {
color = Color.BurlyWood; color = Color.Green;
} else if (tile.IsWater ()) { } else if (tile.IsWater ()) {
color = Color.Blue; color = Color.Blue;
} else if (tile.IsWalkable ()) { } else if (tile.IsWalkable ()) {