Skip to content

Commit

Permalink
feat: more lang
Browse files Browse the repository at this point in the history
  • Loading branch information
bruberu committed Jan 14, 2025
1 parent 3c4aab1 commit cebc3d1
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import codechicken.lib.render.CCRenderState;
import codechicken.lib.render.pipeline.IVertexOperation;
import codechicken.lib.vec.Matrix4;
import gregtech.api.GTValues;
import gregtech.api.capability.GregtechTileCapabilities;
import gregtech.api.capability.IControllable;
import gregtech.api.capability.impl.NotifiableItemStackHandler;
Expand Down Expand Up @@ -270,6 +271,9 @@ public <T> T getCapability(Capability<T> capability, EnumFacing side) {

@Override
public void addInformation(ItemStack stack, @Nullable World player, @NotNull List<String> tooltip, boolean advanced) {
tooltip.add(I18n.format("gregtech.universal.tooltip.max_voltage_in", energyContainer.getInputVoltage(), GTValues.VNF[getTier()]));
tooltip.add(I18n.format("gregtech.universal.tooltip.energy_storage_capacity", energyContainer.getEnergyCapacity()));
tooltip.add(I18n.format("gregtech.universal.tooltip.item_storage_capacity", getInventorySize()));
tooltip.add(I18n.format("gregtech.machine.incinerator.tooltip.1", itemsPerRun, maxProgress));
tooltip.add(I18n.format("gregtech.machine.incinerator.tooltip.2"));
tooltip.add(I18n.format("gregtech.machine.incinerator.tooltip.3"));
Expand Down

0 comments on commit cebc3d1

Please sign in to comment.