summaryrefslogtreecommitdiffstats
path: root/core/src/ch/asynk/rustanddust/game
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2016-01-10 22:16:45 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2016-01-10 22:16:45 +0100
commitfb3533a5da51e30bc3d18a22a79f807dd45261da (patch)
tree90758755d20d35abc8b109c3b4351b5c1f02daa9 /core/src/ch/asynk/rustanddust/game
parent62c2956bf688f9d7ae7b00070828becb7822350f (diff)
downloadRustAndDust-fb3533a5da51e30bc3d18a22a79f807dd45261da.zip
RustAndDust-fb3533a5da51e30bc3d18a22a79f807dd45261da.tar.gz
OrderList is an ArrayListIt
Diffstat (limited to 'core/src/ch/asynk/rustanddust/game')
-rw-r--r--core/src/ch/asynk/rustanddust/game/map/Map4Commands.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/ch/asynk/rustanddust/game/map/Map4Commands.java b/core/src/ch/asynk/rustanddust/game/map/Map4Commands.java
index 8cde4fc..2335475 100644
--- a/core/src/ch/asynk/rustanddust/game/map/Map4Commands.java
+++ b/core/src/ch/asynk/rustanddust/game/map/Map4Commands.java
@@ -27,7 +27,7 @@ public abstract class Map4Commands extends Map3Animations
super(game, map, hex);
this.battle = game.ctrl.battle;
- this.commands = new OrderList();
+ this.commands = new OrderList(10);
}
@Override