Skip to content

Commit

Permalink
Fix Incorrect BlockValues#isDefault (#6876)
Browse files Browse the repository at this point in the history
  • Loading branch information
APickledWalrus authored Jul 10, 2024
1 parent 7fc1033 commit b0f48b9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ public BlockValues getBlockValues(BlockState blockState) {
@Override
public @Nullable BlockValues getBlockValues(Material material) {
if (material.isBlock())
return new NewBlockValues(material, Bukkit.createBlockData(material), false);
return new NewBlockValues(material, Bukkit.createBlockData(material), true);
return null;
}

Expand Down

0 comments on commit b0f48b9

Please sign in to comment.