summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2020-05-24 00:01:27 +0200
committerNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2020-05-24 00:01:27 +0200
commitb61d70864de7e4a39196e06aaa7630c445e322c0 (patch)
tree7946c4a845161cac248a560f7a60c945d5fd2407 /src/battle/src/View/Map/Character.elm
parentfc09d979e4c753377131684b1100c250e89765ea (diff)
...
Diffstat (limited to 'src/battle/src/View/Map/Character.elm')
-rw-r--r--src/battle/src/View/Map/Character.elm6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/battle/src/View/Map/Character.elm b/src/battle/src/View/Map/Character.elm
index 1afffeb..49150eb 100644
--- a/src/battle/src/View/Map/Character.elm
+++ b/src/battle/src/View/Map/Character.elm
@@ -6,7 +6,7 @@ import Html.Attributes
import Html.Events
-- Shared ----------------------------------------------------------------------
-import Util.Html
+import Shared.Util.Html
-- Battle Characters -----------------------------------------------------------
import BattleCharacters.Struct.Portrait
@@ -80,7 +80,7 @@ get_head_html char =
get_banner_html : Struct.Character.Type -> (Html.Html Struct.Event.Type)
get_banner_html char =
-- TODO: Banner from some status indicator
- (Util.Html.nothing)
+ (Shared.Util.Html.nothing)
get_actual_html : Struct.Character.Type -> (Html.Html Struct.Event.Type)
get_actual_html char =
@@ -123,4 +123,4 @@ get_html : Struct.Character.Type -> (Html.Html Struct.Event.Type)
get_html char =
if (Struct.Character.is_alive char)
then (get_actual_html char)
- else (Util.Html.nothing)
+ else (Shared.Util.Html.nothing)