From 2048f344c14362c1db72849d4084d2271cdf97a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20V=C3=B6gele?= Date: Fri, 2 May 2014 09:35:04 +0200 Subject: [PATCH] Huntable wird jetzt auch angezeigt --- src/Gui/Gui.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Gui/Gui.cs b/src/Gui/Gui.cs index f8a7014..7cae48f 100644 --- a/src/Gui/Gui.cs +++ b/src/Gui/Gui.cs @@ -92,11 +92,11 @@ namespace WorldOfPeacecraft int posx = x * TileSize; int posy = y * TileSize; Color color; - if (tile.IsForest ()) { - color = Color.Green; + if (tile.IsHuntable ()) { + color = Color.DarkGreen; } // Stupid parenthesis - else if (tile.IsHuntable ()) { - color = Color.BurlyWood; + else if (tile.IsForest ()) { + color = Color.Green; } else if (tile.IsWater ()) { color = Color.Blue; } else if (tile.IsWalkable ()) {