summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/battle/src/View/Map.elm')
-rw-r--r--src/battle/src/View/Map.elm7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/battle/src/View/Map.elm b/src/battle/src/View/Map.elm
index 1de8472..dc0c770 100644
--- a/src/battle/src/View/Map.elm
+++ b/src/battle/src/View/Map.elm
@@ -12,12 +12,11 @@ import List
-- Shared ----------------------------------------------------------------------
import Util.Html
--- Battle ----------------------------------------------------------------------
-import View.BattleMap.Tile
-
-- Battle Map ------------------------------------------------------------------
import BattleMap.Struct.Map
+import BattleMap.View.Tile
+
-- Local Module ----------------------------------------------------------------
import Constants.UI
@@ -64,7 +63,7 @@ get_tiles_html map =
)
]
(List.map
- (View.BattleMap.Tile.get_html False)
+ (BattleMap.View.Tile.get_html False)
(Array.toList (BattleMap.Struct.Map.get_tiles map))
)
)