Small roots fix
This commit is contained in:
parent
0538b5d36a
commit
7ec4276b04
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ public abstract class ChorusPlantBlockMixin extends Block {
|
|||
if (ctx.canPlace() && world.getBlockState(pos.down()).isIn(BlockTagRegistry.END_GROUND)) {
|
||||
BlockState plant = info.getReturnValue();
|
||||
if (plant.isOf(Blocks.CHORUS_PLANT)) {
|
||||
info.setReturnValue(plant.with(BlocksHelper.ROOTS, true));
|
||||
info.setReturnValue(plant.with(BlocksHelper.ROOTS, true).with(Properties.DOWN, true));
|
||||
info.cancel();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue