Skip to content

Commit

Permalink
Fix clear glass not dropping with silk touch (#4792)
Browse files Browse the repository at this point in the history
  • Loading branch information
KnightMiner committed Mar 14, 2022
1 parent 38a65e6 commit 8f54eb3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ protected static BlockBehaviour.Properties metalBuilder(MaterialColor color) {
/** Builder that pre-supplies glass properties */
protected static BlockBehaviour.Properties glassBuilder(MaterialColor color) {
return builder(Material.GLASS, color, SoundType.GLASS)
.requiresCorrectToolForDrops().strength(0.3F).noOcclusion().isValidSpawn(Blocks::never)
.strength(0.3F).noOcclusion().isValidSpawn(Blocks::never)
.isRedstoneConductor(Blocks::never).isSuffocating(Blocks::never).isViewBlocking(Blocks::never);
}

Expand Down

0 comments on commit 8f54eb3

Please sign in to comment.