mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-12-27 07:27:15 +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 {
|
BiConsumer<BlockPos, Integer> add, boolean searchDownward) throws ChunkNotLoadedException {
|
||||||
Level world = getWorld();
|
Level world = getWorld();
|
||||||
int maxBlocks = maxBlocks();
|
int maxBlocks = maxBlocks();
|
||||||
int maxRange = canDrainInfinitely(fluid) ? maxRange() : maxRange() / 2;
|
int maxRange = maxRange();
|
||||||
int maxRangeSq = maxRange * maxRange;
|
int maxRangeSq = maxRange * maxRange;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue