summaryrefslogtreecommitdiff |
diff options
author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2019-06-14 10:25:55 +0200 |
---|---|---|
committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2019-06-14 10:25:55 +0200 |
commit | 182462aaf6b2b02c5feabb86810402368149cfcf (patch) | |
tree | 0e560d5c634ab9c937d315db6e0ce76d94c3efc0 /src/map-editor | |
parent | 158c04ad2ece69aeeb5bf812ec81bd85c3a8128e (diff) |
Removes all references to attributes.
Diffstat (limited to 'src/map-editor')
-rw-r--r-- | src/map-editor/src/Struct/HelpRequest.elm | 2 | ||||
-rw-r--r-- | src/map-editor/src/View/MessageBoard/Help.elm | 4 | ||||
-rw-r--r-- | src/map-editor/src/View/SubMenu/TileStatus.elm | 4 |
3 files changed, 0 insertions, 10 deletions
diff --git a/src/map-editor/src/Struct/HelpRequest.elm b/src/map-editor/src/Struct/HelpRequest.elm index 6fa0af2..5bfa96f 100644 --- a/src/map-editor/src/Struct/HelpRequest.elm +++ b/src/map-editor/src/Struct/HelpRequest.elm @@ -1,7 +1,6 @@ module Struct.HelpRequest exposing (Type(..)) -- Battle ---------------------------------------------------------------------- -import Battle.Struct.Attributes import Battle.Struct.Statistics import Battle.Struct.DamageType @@ -10,6 +9,5 @@ import Battle.Struct.DamageType -------------------------------------------------------------------------------- type Type = None - | Attribute Battle.Struct.Attributes.Category | Statistic Battle.Struct.Statistics.Category | DamageType Battle.Struct.DamageType.Type diff --git a/src/map-editor/src/View/MessageBoard/Help.elm b/src/map-editor/src/View/MessageBoard/Help.elm index c663e08..49b5b99 100644 --- a/src/map-editor/src/View/MessageBoard/Help.elm +++ b/src/map-editor/src/View/MessageBoard/Help.elm @@ -5,7 +5,6 @@ import Html import Html.Attributes -- Battle ---------------------------------------------------------------------- -import Battle.View.Help.Attribute import Battle.View.Help.DamageType import Battle.View.Help.Statistic @@ -32,9 +31,6 @@ get_html model = ] ( case model.help_request of - (Struct.HelpRequest.Attribute att_cat) -> - (Battle.View.Help.Attribute.get_html_contents att_cat) - (Struct.HelpRequest.Statistic stat_cat) -> (Battle.View.Help.Statistic.get_html_contents stat_cat) diff --git a/src/map-editor/src/View/SubMenu/TileStatus.elm b/src/map-editor/src/View/SubMenu/TileStatus.elm index c1091ad..bc278b0 100644 --- a/src/map-editor/src/View/SubMenu/TileStatus.elm +++ b/src/map-editor/src/View/SubMenu/TileStatus.elm @@ -153,10 +153,6 @@ get_omnimods omnimods = (Html.Attributes.class "info-card-omnimods") ] [ - (Html.text "Attribute Modifiers"), - (get_omnimods_listing - (Battle.Struct.Omnimods.get_attributes_mods omnimods) - ), (Html.text "Statistics Modifiers"), (get_omnimods_listing (Battle.Struct.Omnimods.get_statistics_mods omnimods) |