Skip to content
Snippets Groups Projects
Commit b75c9897 authored by Frederik's avatar Frederik
Browse files

Fix missing movement value for vertical bridges

parent 99221c2c
Branches
No related tags found
1 merge request!29Merge main into box2d to implement physics
......@@ -20,7 +20,6 @@
#include <unordered_set>
#include <vector>
namespace advanced_wars
{
......@@ -35,6 +34,7 @@ const std::array<std::array<int, NUM_MOVEMENT_TYPES>, NUM_TILE_IDS> moveCostTabl
{1, 3, 2, 1, 999, 999}, // FOREST
{2, 999, 999, 1, 999, 999}, // MOUNTAIN
{1, 1, 1, 1, 999, 999}, // BRIDGE_HORIZONTAL
{1, 1, 1, 1, 999, 999}, // BRIDE_VERTICAL
{1, 1, 1, 1, 999, 999}, // STREET_HORIZONTAL
{1, 1, 1, 1, 999, 999}, // STREET_VERTICAL
{1, 1, 1, 1, 999, 999}, // STREET_CROSSING
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment