mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-12-28 16:06:48 +01:00
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:
commit
271ddab7e9
1 changed files with 5 additions and 1 deletions
|
@ -206,4 +206,8 @@ public class WaterWheelStructuralBlock extends DirectionalBlock implements IWren
|
||||||
return stillValid(level, pos, state, false) ? getMaster(level, pos, state) : pos;
|
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;
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue