From 229b9a88e832f2359502c63b3b6d5d550cd27e67 Mon Sep 17 00:00:00 2001 From: IThundxr Date: Mon, 6 May 2024 17:57:31 -0400 Subject: [PATCH] Fix #6240 --- .../kinetics/waterwheel/WaterWheelStructuralBlock.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/simibubi/create/content/kinetics/waterwheel/WaterWheelStructuralBlock.java b/src/main/java/com/simibubi/create/content/kinetics/waterwheel/WaterWheelStructuralBlock.java index e3bf3827a..e1f5e3a5f 100644 --- a/src/main/java/com/simibubi/create/content/kinetics/waterwheel/WaterWheelStructuralBlock.java +++ b/src/main/java/com/simibubi/create/content/kinetics/waterwheel/WaterWheelStructuralBlock.java @@ -206,4 +206,8 @@ public class WaterWheelStructuralBlock extends DirectionalBlock implements IWren return stillValid(level, pos, state, false) ? getMaster(level, pos, state) : pos; } -} \ No newline at end of file + @Override + public boolean isFlammable(BlockState state, BlockGetter level, BlockPos pos, Direction direction) { + return false; + } +}