diff --git a/Common/src/main/java/net/potionstudios/biomeswevegone/world/level/block/plants/tree/fruit/SoulFruitBlock.java b/Common/src/main/java/net/potionstudios/biomeswevegone/world/level/block/plants/tree/fruit/SoulFruitBlock.java index 050143013..e9601b383 100644 --- a/Common/src/main/java/net/potionstudios/biomeswevegone/world/level/block/plants/tree/fruit/SoulFruitBlock.java +++ b/Common/src/main/java/net/potionstudios/biomeswevegone/world/level/block/plants/tree/fruit/SoulFruitBlock.java @@ -13,10 +13,11 @@ import net.minecraft.world.effect.MobEffects; import net.minecraft.world.level.Level; import net.minecraft.world.level.LevelAccessor; -import net.minecraft.world.level.block.Blocks; import net.minecraft.world.level.block.SoundType; +import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; import net.minecraft.world.level.material.MapColor; +import net.minecraft.world.level.material.PushReaction; import net.minecraft.world.phys.Vec3; import net.potionstudios.biomeswevegone.client.BWGSounds; import net.potionstudios.biomeswevegone.world.item.BWGItems; @@ -25,7 +26,7 @@ public class SoulFruitBlock extends BWGFruitBlock { public SoulFruitBlock() { - super(Properties.ofFullCopy(Blocks.SWEET_BERRY_BUSH).lightLevel(light -> 14).mapColor(MapColor.COLOR_PURPLE).sound(new SoundType(0.25f, 1f, BWGSounds.SOUL_FRUIT_WAIL.get(), SoundEvents.GRASS_STEP, SoundEvents.SWEET_BERRY_BUSH_PLACE, SoundEvents.GRASS_HIT, SoundEvents.GRASS_FALL)), () -> BWGItems.SOUL_FRUIT, BWGWood.FLOWERING_SPIRIT_LEAVES); + super(BlockBehaviour.Properties.of().mapColor(MapColor.PLANT).randomTicks().sound(SoundType.SWEET_BERRY_BUSH).pushReaction(PushReaction.DESTROY).lightLevel(light -> 14).mapColor(MapColor.COLOR_PURPLE).sound(new SoundType(0.25f, 1f, BWGSounds.SOUL_FRUIT_WAIL.get(), SoundEvents.GRASS_STEP, SoundEvents.SWEET_BERRY_BUSH_PLACE, SoundEvents.GRASS_HIT, SoundEvents.GRASS_FALL)), () -> BWGItems.SOUL_FRUIT, BWGWood.FLOWERING_SPIRIT_LEAVES); } @Override