[Fix] Incorrect Offset for BasePlantBlock

This commit is contained in:
Frank 2022-06-25 11:22:07 +02:00
parent decaf4af7a
commit cb5852b841

View file

@ -69,7 +69,7 @@ public abstract class BasePlantBlock extends BaseBlockNotFull implements RenderL
.of(replaceable ? Material.REPLACEABLE_PLANT : Material.PLANT) .of(replaceable ? Material.REPLACEABLE_PLANT : Material.PLANT)
.sound(SoundType.GRASS) .sound(SoundType.GRASS)
.noCollission() .noCollission()
.offsetType(BlockBehaviour.OffsetType.XZ) .offsetType(OffsetType.NONE)
) )
); );
} }