mirror of
https://github.com/Creators-of-Create/Create.git
synced 2025-02-06 18:34:59 +01:00
Fix fluids not being placed into flowing fluids of the same type (#7054)
This commit is contained in:
parent
4afbc7e455
commit
c765b00c77
1 changed files with 1 additions and 1 deletions
|
@ -192,7 +192,7 @@ public class OpenEndedPipe extends FlowSource {
|
|||
if (!FluidHelper.hasBlockState(fluid.getFluid()))
|
||||
return true;
|
||||
|
||||
if (!fluidState.isEmpty() && fluidState.getType() != fluid.getFluid()) {
|
||||
if (!fluidState.isEmpty() && FluidHelper.convertToStill(fluidState.getType()) != fluid.getFluid()) {
|
||||
FluidReactions.handlePipeSpillCollision(world, outputPos, fluid.getFluid(), fluidState);
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue