| summaryrefslogtreecommitdiff | 
diff options
| author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2019-03-23 02:13:29 +0100 | 
|---|---|---|
| committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2019-03-23 02:13:29 +0100 | 
| commit | c48281aff0237837beb91270f6160dadc2476d47 (patch) | |
| tree | 3eb736b2b9ef4413670c652cb41d43553cb7c756 /src/shared | |
| parent | b4f009b5b6acae8a7c2713858119e1e4be17b616 (diff) | |
[Broken] ... 'battle' compiles again ...
Diffstat (limited to 'src/shared')
| -rw-r--r-- | src/shared/battle-characters/BattleCharacters/View/Portrait.elm | 4 | ||||
| -rw-r--r-- | src/shared/battle/Battle/View/Statistic.elm | 4 | 
2 files changed, 5 insertions, 3 deletions
| diff --git a/src/shared/battle-characters/BattleCharacters/View/Portrait.elm b/src/shared/battle-characters/BattleCharacters/View/Portrait.elm index 50c5c4c..37b6d1f 100644 --- a/src/shared/battle-characters/BattleCharacters/View/Portrait.elm +++ b/src/shared/battle-characters/BattleCharacters/View/Portrait.elm @@ -57,7 +57,7 @@ get_portrait_armor_html equipment =                 "asset-armor-"                 ++                 (BattleCharacters.Struct.Armor.get_image_id -                  (BattleCharacters.Equipment.get_armor equipment) +                  (BattleCharacters.Struct.Equipment.get_armor equipment)                 )              )           ), @@ -80,7 +80,7 @@ get_portrait_armor_html equipment =  --------------------------------------------------------------------------------  get_html : (        (List (Html.Attribute Struct.Event.Type)) -> -      BattleCharacters.Equipment.Type -> +      BattleCharacters.Struct.Equipment.Type ->        (Html.Html Struct.Event.Type)     )  get_html extra_attributes equipment = diff --git a/src/shared/battle/Battle/View/Statistic.elm b/src/shared/battle/Battle/View/Statistic.elm index a3ac669..0ced0dc 100644 --- a/src/shared/battle/Battle/View/Statistic.elm +++ b/src/shared/battle/Battle/View/Statistic.elm @@ -2,8 +2,10 @@ module Battle.View.Statistic exposing     (        get_html,        get_all_html, +      get_all_but_gauges_html,        get_signed_html, -      get_all_signed_html +      get_all_signed_html, +      get_all_but_gauges_signed_html     )  -- Elm ------------------------------------------------------------------------- | 


