Skip to content

Commit

Permalink
Merge pull request #1 from alphaNOVAircraft/master
Browse files Browse the repository at this point in the history
Change Capacity of Ender Tank
  • Loading branch information
Dream-Master authored Dec 25, 2020
2 parents 15b0671 + 6702941 commit 18660c6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ Ender-Storage.iws
build.iml
build.ipr
build.iws
/.idea/
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

public class EnderLiquidStorage extends AbstractEnderStorage implements IFluidHandler
{
public static final int CAPACITY = 16 * FluidUtils.B;
public static final int CAPACITY = 256 * FluidUtils.B;

private class Tank extends ExtendedFluidTank
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,6 @@ public static void renderLiquid(FluidStack liquid, double x, double y, double z)
RenderUtils.renderFluidCuboid(liquid,
new Cuboid6(0.22, 0.12, 0.22, 0.78, 0.121+0.63, 0.78)
.add(new Vector3(x, y, z)),
liquid.amount/(16D*FluidUtils.B), 0.75);
liquid.amount/(256D*FluidUtils.B), 0.75);
}
}

0 comments on commit 18660c6

Please sign in to comment.