summaryrefslogtreecommitdiffstats
path: root/core/test/ch/asynk
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2015-12-24 20:02:21 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2015-12-24 20:02:21 +0100
commit4fdf26458bc803ec6f818ee4e96356b565ff25b1 (patch)
tree530993a6581133bf299e27b4aaba6704b12d80d5 /core/test/ch/asynk
parentcf17d0465c15cf5770138f79176f3892df50104d (diff)
downloadRustAndDust-4fdf26458bc803ec6f818ee4e96356b565ff25b1.zip
RustAndDust-4fdf26458bc803ec6f818ee4e96356b565ff25b1.tar.gz
Hex: blockLineOfSightFrom(Tile) -> blockLineOfSight(Tile, Tile)
Diffstat (limited to 'core/test/ch/asynk')
-rw-r--r--core/test/ch/asynk/rustanddust/Helpers.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/test/ch/asynk/rustanddust/Helpers.java b/core/test/ch/asynk/rustanddust/Helpers.java
index 8dd04ff..3d5a671 100644
--- a/core/test/ch/asynk/rustanddust/Helpers.java
+++ b/core/test/ch/asynk/rustanddust/Helpers.java
@@ -78,7 +78,7 @@ public class Helpers
@Override public boolean isA(TileTerrain terrain) { return true; }
@Override public boolean road(Orientation side) { return false; }
@Override public boolean atLeastOneMove(Pawn pawn) { return true; }
- @Override public boolean blockLineOfSightFrom(Tile from) { return blockLineOfSight; }
+ @Override public boolean blockLineOfSight(Tile from, Tile to) { return blockLineOfSight; }
public void setBlockLineOfSight(boolean block) { blockLineOfSight = block; }
}