diff --git a/src/main/java/de/ellpeck/actuallyadditions/mod/items/base/ItemEnergy.java b/src/main/java/de/ellpeck/actuallyadditions/mod/items/base/ItemEnergy.java index f6cf6c66e..51a620151 100644 --- a/src/main/java/de/ellpeck/actuallyadditions/mod/items/base/ItemEnergy.java +++ b/src/main/java/de/ellpeck/actuallyadditions/mod/items/base/ItemEnergy.java @@ -97,8 +97,8 @@ public abstract class ItemEnergy extends ItemEnergyContainer{ @Override public double getDurabilityForDisplay(ItemStack stack){ - double energyDif = this.getMaxEnergyStored(stack)-this.getEnergyStored(stack); double maxAmount = this.getMaxEnergyStored(stack); + double energyDif = maxAmount-this.getEnergyStored(stack); return energyDif/maxAmount; } diff --git a/src/main/resources/assets/actuallyadditions/lang/en_US.lang b/src/main/resources/assets/actuallyadditions/lang/en_US.lang index 90df0bcf0..833c3e8bf 100644 --- a/src/main/resources/assets/actuallyadditions/lang/en_US.lang +++ b/src/main/resources/assets/actuallyadditions/lang/en_US.lang @@ -836,7 +836,7 @@ booklet.actuallyadditions.chapter.waterRemovalRing.name=Ring Of Liquid Banning booklet.actuallyadditions.chapter.waterRemovalRing.text.1=The Ring Of Liquid Banning, when it is charged in an Energizer and in your hand, uses RF to remove Lava and Water. booklet.actuallyadditions.chapter.batteries.name=Batteries -booklet.actuallyadditions.chapter.batteries.text.1=Batteries are a good way to store RF to move around. They can be charged in an Energizer and discharged in an Enervator. +booklet.actuallyadditions.chapter.batteries.text.1=Batteries are a good way to store RF to move around. They can be charged in an Energizer and discharged in an Enervator. When holding them in hand, they can be sneak-right-clicked to put them into discharge mode. This means that they will charge any other items in your inventory. booklet.actuallyadditions.chapter.leafGen.name=Leaf-Eating Generator booklet.actuallyadditions.chapter.leafGen.text.1=The Leaf Generator can generate RF just by being placed alongside some Leaves. It will destroy the leaves, generating RF per leaf broken in the process. By right-clicking the generator, you can see how much RF it has stored. It has a range of blocks.