Skip to content

Commit

Permalink
undo
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
IThundxr committed Aug 24, 2024
1 parent e691f4d commit f1a3a25
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -191,10 +191,10 @@ private boolean provideFluidToSpace(FluidStack fluid, TransactionContext ctx) {
return false;
if (fluid.isEmpty())
return false;
if (!FluidHelper.hasBlockState(fluid.getFluid()) || fluid.getFluid().is(Milk.MILK_FLUID_TAG)) // fabric: milk logic is different
return true;
if (!(fluid.getFluid() instanceof FlowingFluid))
return false;
if (!FluidHelper.hasBlockState(fluid.getFluid()) || fluid.getFluid().is(Milk.MILK_FLUID_TAG)) // fabric: milk logic is different
return true;

// fabric: note - this is possibly prone to issues but follows what forge does.
// collisions completely ignore simulation / transactions.
Expand Down

0 comments on commit f1a3a25

Please sign in to comment.