Merge pull request #6461 from IThundxr/mc1.18/wheels-from-below

Fix Large Water Wheel Structural blocks catching on fire
This commit is contained in:
simibubi 2024-07-17 11:06:00 +02:00 committed by GitHub
commit 271ddab7e9
Failed to generate hash of commit

View file

@ -206,4 +206,8 @@ public class WaterWheelStructuralBlock extends DirectionalBlock implements IWren
return stillValid(level, pos, state, false) ? getMaster(level, pos, state) : pos;
}
}
@Override
public boolean isFlammable(BlockState state, BlockGetter level, BlockPos pos, Direction direction) {
return false;
}
}