diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2015-01-07 10:30:53 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2015-01-07 10:30:53 +0100 |
commit | 7717813e7b694ea119c697d191b3753f12d5a6ea (patch) | |
tree | a2654729d706bd4b74783e4c593bde31a95f1798 | |
parent | f6b705cc0b57add7b7c33f186542dc980c6124ef (diff) | |
download | RustAndDust-7717813e7b694ea119c697d191b3753f12d5a6ea.zip RustAndDust-7717813e7b694ea119c697d191b3753f12d5a6ea.tar.gz |
Config: default is can not cancel
-rw-r--r-- | TODO | 1 | ||||
-rw-r--r-- | core/src/ch/asynk/tankontank/game/Config.java | 2 |
2 files changed, 1 insertions, 2 deletions
@@ -7,7 +7,6 @@ TODO: - objectives - engagement - pause / resume - - maybe do not need cancel button in engagement and HQ mode, but must support canCancel option NEXT: - support different board layout diff --git a/core/src/ch/asynk/tankontank/game/Config.java b/core/src/ch/asynk/tankontank/game/Config.java index d2bc3b0..811255f 100644 --- a/core/src/ch/asynk/tankontank/game/Config.java +++ b/core/src/ch/asynk/tankontank/game/Config.java @@ -19,7 +19,7 @@ public class Config this.showMoves = true; this.showTargets = true; this.showMoveAssists = true; - this.canCancel = true; + this.canCancel = false; this.mustValidate = false; this.showEnemyPossibilities = false; this.regularPawns = true; |