summaryrefslogtreecommitdiff |
diff options
author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2017-09-23 20:26:52 +0200 |
---|---|---|
committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2017-09-23 20:26:52 +0200 |
commit | 568309d0cfb5114accbc21962d5d23c3b9bf7036 (patch) | |
tree | 3db7174f104eba060dd1e6b545c74f984e209139 /client/elm/battlemap/src/Shim/Model.elm | |
parent | dbad54ad228df4b70f56bf6be1380b6ae3064ac3 (diff) |
Fixes "Too much recursion" and some similar issues
Diffstat (limited to 'client/elm/battlemap/src/Shim/Model.elm')
-rw-r--r-- | client/elm/battlemap/src/Shim/Model.elm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/client/elm/battlemap/src/Shim/Model.elm b/client/elm/battlemap/src/Shim/Model.elm index 0371b53..4a0146d 100644 --- a/client/elm/battlemap/src/Shim/Model.elm +++ b/client/elm/battlemap/src/Shim/Model.elm @@ -20,8 +20,8 @@ generate = name = "Char2", icon = "Icon2", portrait = "Portrait2", - location = {x = 1, y = 4}, - movement_points = 6 + location = {x = 0, y = 1}, + movement_points = 5 } (Dict.insert "1" @@ -30,8 +30,8 @@ generate = name = "Char1", icon = "Icon1", portrait = "Portrait1", - location = {x = 4, y = 1}, - movement_points = 10 + location = {x = 1, y = 0}, + movement_points = 4 } (Dict.insert "0" @@ -41,7 +41,7 @@ generate = icon = "Icon0", portrait = "Portrait0", location = {x = 0, y = 0}, - movement_points = 16 + movement_points = 3 } Dict.empty ) |