Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
reobf committed Feb 23, 2025
1 parent b968736 commit 03291cc
Show file tree
Hide file tree
Showing 6 changed files with 1,034 additions and 1,044 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1617,8 +1617,13 @@ public FluidStack getFluid() {

@Override
public int getFluidAmount() {
int ret=(int) Math.min(inner.getFluidAmount(),Integer.MAX_VALUE);

return (int) Math.min(inner.getFluidAmount(),Integer.MAX_VALUE);
if(ret>64){

System.out.println(ret);
}
return ret;
}

@Override
Expand Down
Loading

0 comments on commit 03291cc

Please sign in to comment.