diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/src/ch/asynk/rustanddust/game/Player.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/ch/asynk/rustanddust/game/Player.java b/core/src/ch/asynk/rustanddust/game/Player.java index c31fddb..c5d3473 100644 --- a/core/src/ch/asynk/rustanddust/game/Player.java +++ b/core/src/ch/asynk/rustanddust/game/Player.java @@ -186,8 +186,8 @@ public class Player { apSpent += 1; actionCount += 1; - RustAndDust.debug("Player", String.format("%d/%d - %d", apSpent, ap, actionCount)); - if (apSpent > ap) RustAndDust.debug("ERROR: spent too much AP, please report"); + RustAndDust.debug(" burn 1 AP : " + this.toString()); + if (apSpent > ap) RustAndDust.error("ERROR: spent too much AP, please report"); } public void turnEnd() |