From 7b284f3303f96cdbd58b634e162cb775c78633f1 Mon Sep 17 00:00:00 2001 From: YuRaNnNzZZ Date: Fri, 30 Aug 2024 17:00:05 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=9D=D0=9E=20=D0=9F=D0=A0=D0=9E=D0=97?= =?UTF-8?q?=D0=A0=D0=90=D0=A7=D0=9D=D0=9E=D0=95=20=D0=91=D0=9B=D0=AF=D0=A2?= =?UTF-8?q?=D0=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../otm/block/decorative/InfiniteWaterSourceBlock.kt | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/block/decorative/InfiniteWaterSourceBlock.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/block/decorative/InfiniteWaterSourceBlock.kt index e36834fde..3af1efab2 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/block/decorative/InfiniteWaterSourceBlock.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/block/decorative/InfiniteWaterSourceBlock.kt @@ -25,7 +25,16 @@ import ru.dbotthepony.mc.otm.block.getShapeForEachState import ru.dbotthepony.mc.otm.core.get import ru.dbotthepony.mc.otm.shapes.BlockShapes -class InfiniteWaterSourceBlock : RotatableMatteryBlock(Properties.of().destroyTime(1.5f).explosionResistance(10f).pushReaction(PushReaction.NORMAL).requiresCorrectToolForDrops().mapColor(MapColor.WATER)), EntityBlock { +class InfiniteWaterSourceBlock : RotatableMatteryBlock( + Properties.of() + .destroyTime(1.5f) + .explosionResistance(10f) + .pushReaction(PushReaction.NORMAL) + .requiresCorrectToolForDrops() + .mapColor(MapColor.WATER) + .forceSolidOff() + .noOcclusion() +), EntityBlock { override fun newBlockEntity(p_153215_: BlockPos, p_153216_: BlockState): BlockEntity { return InfiniteWaterSourceBlockEntity(p_153215_, p_153216_) }