summaryrefslogtreecommitdiff |
diff options
author | nsensfel <SpamShield0@noot-noot.org> | 2019-03-20 17:30:22 +0100 |
---|---|---|
committer | nsensfel <SpamShield0@noot-noot.org> | 2019-03-20 17:30:22 +0100 |
commit | 125eb8ba1e1707bd5468a96131a740abef3c6f43 (patch) | |
tree | 28216937c3d3403906f347108ab19d89f0afa828 /src/roster-editor | |
parent | b6fa3b730fe0c4249e714545ca88d2729c815a9b (diff) |
...
Diffstat (limited to 'src/roster-editor')
-rw-r--r-- | src/roster-editor/src/Struct/HelpRequest.elm | 8 | ||||
-rw-r--r-- | src/roster-editor/src/View/MessageBoard/Help.elm | 2 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/roster-editor/src/Struct/HelpRequest.elm b/src/roster-editor/src/Struct/HelpRequest.elm index 50d2ee6..6fa0af2 100644 --- a/src/roster-editor/src/Struct/HelpRequest.elm +++ b/src/roster-editor/src/Struct/HelpRequest.elm @@ -1,7 +1,15 @@ module Struct.HelpRequest exposing (Type(..)) +-- Battle ---------------------------------------------------------------------- +import Battle.Struct.Attributes +import Battle.Struct.Statistics +import Battle.Struct.DamageType + -------------------------------------------------------------------------------- -- TYPES ----------------------------------------------------------------------- -------------------------------------------------------------------------------- type Type = None + | Attribute Battle.Struct.Attributes.Category + | Statistic Battle.Struct.Statistics.Category + | DamageType Battle.Struct.DamageType.Type diff --git a/src/roster-editor/src/View/MessageBoard/Help.elm b/src/roster-editor/src/View/MessageBoard/Help.elm index eea0c8a..dbd0412 100644 --- a/src/roster-editor/src/View/MessageBoard/Help.elm +++ b/src/roster-editor/src/View/MessageBoard/Help.elm @@ -29,5 +29,7 @@ get_html model = case model.help_request of Struct.HelpRequest.None -> (View.MessageBoard.Help.Guide.get_html_contents model) + + _ -> (View.MessageBoard.Help.Guide.get_html_contents model) ) ) |