Skip to content

Commit

Permalink
tank capacity to 1000L x2
Browse files Browse the repository at this point in the history
  • Loading branch information
aagrishankov authored Nov 2, 2020
1 parent 78d421d commit 2fe4922
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/scala/extracells/part/PartFluidInterface.java
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ public void writeToNBT(NBTTagCompound tagCompound) {
private IAEItemStack toExport = null;

private final Item encodedPattern = AEApi.instance().definitions().items().encodedPattern().maybeItem().orNull();
private FluidTank tank = new FluidTank(64000) {
private FluidTank tank = new FluidTank(1000) {
@Override
public FluidTank readFromNBT(NBTTagCompound nbt) {
if (!nbt.hasKey("Empty")) {
Expand Down Expand Up @@ -442,14 +442,14 @@ public List<String> getWailaBodey(NBTTagCompound tag, List<String> list) {
.translateToLocal("extracells.tooltip.empty1"));
list.add(StatCollector
.translateToLocal("extracells.tooltip.amount")
+ ": 0L / 64000L");
+ ": 0L / 1000L");
} else {
list.add(StatCollector.translateToLocal("extracells.tooltip.fluid")
+ ": " + fluid.getLocalizedName());
list.add(StatCollector
.translateToLocal("extracells.tooltip.amount")
+ ": "
+ fluid.amount + "L / 64000L");
+ fluid.amount + "L / 1000L");
}
return list;
}
Expand Down

0 comments on commit 2fe4922

Please sign in to comment.