Skip to content

Commit

Permalink
anticipate fix for ae2uel
Browse files Browse the repository at this point in the history
  • Loading branch information
ghzdude committed Sep 12, 2024
1 parent 05b833e commit ee5ad42
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,12 @@ public FluidStack getContents() {
if (f != null) f.amount = mBPerCycle;
return f;
}

@Override
public boolean canDrainFluidType(FluidStack fluidStack) {
if (!active) return false;
return super.canDrainFluidType(fluidStack);
}
}
};
}
Expand Down

0 comments on commit ee5ad42

Please sign in to comment.