mirror of
https://github.com/Creators-of-Create/Create.git
synced 2025-01-13 15:56:38 +01:00
restore the invariant that draining is the inverse of filling
This commit is contained in:
parent
2201d87da7
commit
757f4e2699
1 changed files with 5 additions and 5 deletions
|
@ -148,7 +148,7 @@ public abstract class FluidManipulationBehaviour extends BlockEntityBehaviour {
|
|||
BiConsumer<BlockPos, Integer> add, boolean searchDownward) throws ChunkNotLoadedException {
|
||||
Level world = getWorld();
|
||||
int maxBlocks = maxBlocks();
|
||||
int maxRange = canDrainInfinitely(fluid) ? maxRange() : maxRange() / 2;
|
||||
int maxRange = maxRange();
|
||||
int maxRangeSq = maxRange * maxRange;
|
||||
int i;
|
||||
|
||||
|
|
Loading…
Reference in a new issue