summaryrefslogtreecommitdiff |
diff options
author | nsensfel <SpamShield0@noot-noot.org> | 2019-05-03 14:17:19 +0200 |
---|---|---|
committer | nsensfel <SpamShield0@noot-noot.org> | 2019-05-03 14:17:19 +0200 |
commit | 112dbe2aa3e4771d71754a357627ba4449e8c974 (patch) | |
tree | 273624e799464df39e4d276da09fa9ee3100eab8 /src/battle/src/View | |
parent | f0b1a04a8a4903596ed3347aaf0a97bc1ce9ba44 (diff) |
Base dmg icon, dmg types help.
Diffstat (limited to 'src/battle/src/View')
-rw-r--r-- | src/battle/src/View/MessageBoard/Help.elm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/battle/src/View/MessageBoard/Help.elm b/src/battle/src/View/MessageBoard/Help.elm index 9511f96..7b1984e 100644 --- a/src/battle/src/View/MessageBoard/Help.elm +++ b/src/battle/src/View/MessageBoard/Help.elm @@ -6,6 +6,7 @@ import Html.Attributes -- Battle ---------------------------------------------------------------------- import Battle.View.Help.Attribute +import Battle.View.Help.DamageType import Battle.View.Help.Statistic -- Local Module ---------------------------------------------------------------- @@ -44,6 +45,9 @@ get_html model = (Struct.HelpRequest.Statistic stat_cat) -> (Battle.View.Help.Statistic.get_html_contents stat_cat) - _ -> [(Html.text "Help is not available for this, yet.")] + (Struct.HelpRequest.DamageType dmg_cat) -> + (Battle.View.Help.DamageType.get_html_contents dmg_cat) + +-- _ -> [(Html.text "Help is not available for this, yet.")] ) ) |