summaryrefslogtreecommitdiffstats
path: root/core/src
diff options
context:
space:
mode:
Diffstat (limited to 'core/src')
-rw-r--r--core/src/ch/asynk/rustanddust/game/Ctrl.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/core/src/ch/asynk/rustanddust/game/Ctrl.java b/core/src/ch/asynk/rustanddust/game/Ctrl.java
index 4059b13..126d456 100644
--- a/core/src/ch/asynk/rustanddust/game/Ctrl.java
+++ b/core/src/ch/asynk/rustanddust/game/Ctrl.java
@@ -500,8 +500,6 @@ public abstract class Ctrl implements Disposable
private void checkPlayer(StateType nextState)
{
- // FIXME msg stacking
- // FIXME maybe add default msg as param
if (battle.getPlayer().apExhausted()) {
if (mode == Mode.PLAY)
hud.notify("No more Action Points");
@@ -563,7 +561,7 @@ public abstract class Ctrl implements Disposable
else {
hud.update();
if (battle.getPlayer().hasReinforcement())
- hud.notify("You have reinforcement", 2, Position.MIDDLE_CENTER, true);
+ hud.notify("You have reinforcement");
if (!battle.getPlayer().canDoSomething()) {
hud.notify("No available Actions");
postTurnDone();