summaryrefslogtreecommitdiffstats
path: root/core/test/ch/asynk
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2015-12-30 21:40:45 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2015-12-30 21:40:45 +0100
commit4509673c9403c11b9312cf287a32e011eb92dd06 (patch)
treeebccd54e132061ad6d9cdcb6bb075997851fdfd4 /core/test/ch/asynk
parent828cc187c46cc375c107fd68f61c1e09975dde6f (diff)
downloadRustAndDust-4509673c9403c11b9312cf287a32e011eb92dd06.zip
RustAndDust-4509673c9403c11b9312cf287a32e011eb92dd06.tar.gz
tests: fix engine API calls
Diffstat (limited to 'core/test/ch/asynk')
-rw-r--r--core/test/ch/asynk/rustanddust/Helpers.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/core/test/ch/asynk/rustanddust/Helpers.java b/core/test/ch/asynk/rustanddust/Helpers.java
index 3d5a671..9ca9761 100644
--- a/core/test/ch/asynk/rustanddust/Helpers.java
+++ b/core/test/ch/asynk/rustanddust/Helpers.java
@@ -56,14 +56,14 @@ public class Helpers
public FakeTile(int col, int row)
{
- super(col, row);
+ super(col, row, null);
offMap = false;
blockLineOfSight = false;
}
public FakeTile(int col, int row, boolean offMap)
{
- super(col, row);
+ super(col, row, null);
this.offMap = offMap;
}
@@ -131,8 +131,6 @@ public class Helpers
@Override public void animationsOver() {}
- @Override public boolean isObjectiveFor(Tile tile, Pawn other) { return false; }
-
@Override
public Tile getTile(int col, int row)
{