PC-541
Fixes an issue where glowing redstone ore would not be counted if the expected block was redstone ore.
This commit is contained in:
parent
3f62dd49ef
commit
79085c1ecf
@ -324,6 +324,11 @@ public class RecreationData
|
|||||||
score++;
|
score++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (expectedState.getType() == Material.REDSTONE_ORE && currentBlock.getType() == Material.GLOWING_REDSTONE_ORE)
|
||||||
|
{
|
||||||
|
score++;
|
||||||
|
}
|
||||||
|
|
||||||
//Fix for corner stair shape
|
//Fix for corner stair shape
|
||||||
if (currentBlock.getState().getData() instanceof Stairs && expectedState.getData() instanceof Stairs)
|
if (currentBlock.getState().getData() instanceof Stairs && expectedState.getData() instanceof Stairs)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user