Fixed Survives On handling

This commit is contained in:
Frank 2023-06-14 13:14:13 +02:00
parent 7c61b8c92e
commit afc3d1e795
27 changed files with 126 additions and 32 deletions

View file

@ -47,4 +47,9 @@ public class TwistedUmbrellaMossBlock extends EndPlantBlock implements Behaviour
BlocksHelper.setWithoutUpdate(world, pos, bs);
BlocksHelper.setWithoutUpdate(world, pos.above(), bs.setValue(BaseDoublePlantBlock.TOP, true));
}
@Override
public boolean isTerrain(BlockState state) {
return SurvivesOnJungleMossOrMycelium.super.isTerrain(state);
}
}