Removed link byte, replaced with rotation

This commit is contained in:
Anuken
2019-04-12 15:30:34 -04:00
parent 46c3b35028
commit 9ebb4c7d12
9 changed files with 64 additions and 47 deletions

View File

@ -81,7 +81,7 @@ public class PowerTestFixture{
// Since this part shall not be part of the test and would require more work anyway, we manually set the block and floor
// through reflections and then simulate part of what the changed() method does.
Field field = Tile.class.getDeclaredField("wall");
Field field = Tile.class.getDeclaredField("block");
field.setAccessible(true);
field.set(tile, block);