| summaryrefslogtreecommitdiff | 
diff options
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)        )     ) | 


