Skip to content

Commit

Permalink
Fix occlusion for entangled block
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperMartijn642 committed Feb 12, 2024
1 parent 929be88 commit 6edeaf8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public static boolean canBindTo(ResourceLocation blockDimension, BlockPos blockP
public static final EnumProperty<State> STATE_PROPERTY = EnumProperty.create("state", State.class);

public EntangledBlock(){
super(true, BlockProperties.create().mapColor(MapColor.COLOR_BROWN).sound(SoundType.STONE).destroyTime(1).explosionResistance(2));
super(true, BlockProperties.create().mapColor(MapColor.COLOR_BROWN).sound(SoundType.STONE).destroyTime(1).explosionResistance(2).noOcclusion());
this.registerDefaultState(this.defaultBlockState().setValue(STATE_PROPERTY, State.UNBOUND));
}

Expand Down

0 comments on commit 6edeaf8

Please sign in to comment.