This commit is contained in:
IThundxr 2024-05-06 18:00:06 -04:00 committed by GitHub
commit c506a0f466
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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;
}
}