summaryrefslogtreecommitdiff |
diff options
Diffstat (limited to 'src/battlemap/src/View/SubMenu/Timeline/WeaponSwitch.elm')
-rw-r--r-- | src/battlemap/src/View/SubMenu/Timeline/WeaponSwitch.elm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/battlemap/src/View/SubMenu/Timeline/WeaponSwitch.elm b/src/battlemap/src/View/SubMenu/Timeline/WeaponSwitch.elm index 53122ad..21d07e6 100644 --- a/src/battlemap/src/View/SubMenu/Timeline/WeaponSwitch.elm +++ b/src/battlemap/src/View/SubMenu/Timeline/WeaponSwitch.elm @@ -1,7 +1,7 @@ module View.SubMenu.Timeline.WeaponSwitch exposing (get_html) -- Elm ------------------------------------------------------------------------- -import Dict +import Array import Html import Html.Attributes @@ -23,12 +23,13 @@ import View.Character -- EXPORTED -------------------------------------------------------------------- -------------------------------------------------------------------------------- get_html : ( - Struct.Model.Type -> + (Array.Array Struct.Character.Type) -> + String -> Struct.TurnResult.WeaponSwitch -> (Html.Html Struct.Event.Type) ) -get_html model weapon_switch = - case (Dict.get (toString weapon_switch.character_index) model.characters) of +get_html characters player_id weapon_switch = + case (Array.get weapon_switch.character_index characters) of (Just char) -> (Html.div [ @@ -36,7 +37,7 @@ get_html model weapon_switch = (Html.Attributes.class "battlemap-timeline-weapon-switch") ] [ - (View.Character.get_portrait_html model.player_id char), + (View.Character.get_portrait_html player_id char), (Html.text ( (Struct.Character.get_name char) |