Skip to content

Commit

Permalink
Reinforced deepslate can't be moved by pistons
Browse files Browse the repository at this point in the history
  • Loading branch information
davchoo committed May 26, 2022
1 parent 83c3097 commit a70f1bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ private static void registerJavaBlocks() {
builder.pickItem(pickItemNode.textValue().intern());
}

if (javaId.equals("minecraft:obsidian") || javaId.equals("minecraft:crying_obsidian") || javaId.startsWith("minecraft:respawn_anchor")) {
if (javaId.equals("minecraft:obsidian") || javaId.equals("minecraft:crying_obsidian") || javaId.startsWith("minecraft:respawn_anchor") || javaId.startsWith("minecraft:reinforced_deepslate")) {
builder.pistonBehavior(PistonBehavior.BLOCK);
} else {
JsonNode pistonBehaviorNode = entry.getValue().get("piston_behavior");
Expand Down

0 comments on commit a70f1bc

Please sign in to comment.