Fixes an issue where glowing redstone ore would not be counted if the
expected block was redstone ore.
This commit is contained in:
Sam 2016-06-17 00:26:24 +01:00
parent 3f62dd49ef
commit 79085c1ecf
1 changed files with 5 additions and 0 deletions

View File

@ -324,6 +324,11 @@ public class RecreationData
score++;
}
if (expectedState.getType() == Material.REDSTONE_ORE && currentBlock.getType() == Material.GLOWING_REDSTONE_ORE)
{
score++;
}
//Fix for corner stair shape
if (currentBlock.getState().getData() instanceof Stairs && expectedState.getData() instanceof Stairs)
{