summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/map-editor')
-rw-r--r--src/map-editor/src/Struct/HelpRequest.elm2
-rw-r--r--src/map-editor/src/View/MessageBoard/Help.elm4
-rw-r--r--src/map-editor/src/View/SubMenu/TileStatus.elm4
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)