summaryrefslogtreecommitdiff |
diff options
author | nsensfel <SpamShield0@noot-noot.org> | 2018-02-09 18:39:53 +0100 |
---|---|---|
committer | nsensfel <SpamShield0@noot-noot.org> | 2018-02-09 18:39:53 +0100 |
commit | ce8132a234fb34a416226ef024d3fa6086c312aa (patch) | |
tree | b51dc2164dbab0cab54f49c5558d8999f0ba4d7d | |
parent | cf787fed79d854f89345b31886998965290fc432 (diff) |
Updates cost of tiles to match new mov_pts.
-rw-r--r-- | src/battlemap/src/Data/Tile.elm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/battlemap/src/Data/Tile.elm b/src/battlemap/src/Data/Tile.elm index 06c921b..43606aa 100644 --- a/src/battlemap/src/Data/Tile.elm +++ b/src/battlemap/src/Data/Tile.elm @@ -10,6 +10,6 @@ get_cost : Int -> Int get_cost i = if (i <= 200) then - (i + 1) + (i + 8) else Constants.Movement.cost_when_out_of_bounds |