Skip to content

Commit

Permalink
Formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
tomprince committed Jan 20, 2025
1 parent cdfa1a9 commit 501ccdd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -193,12 +193,6 @@ protected void transferEnergyTick() {
public void addDisplayText(List<Component> textList) {
IDisplayUIMachine.super.addDisplayText(textList);
if (isFormed()) {
if (isActive()) {
textList.add(Component.translatable("gtceu.multiblock.running"));
} else {
textList.add(Component.translatable("gtceu.multiblock.idling"));
}

if (energyBank != null) {
BigInteger energyStored = energyBank.getStored();
BigInteger energyCapacity = energyBank.getCapacity();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -918,7 +918,8 @@ protected static void init(RegistrateLangProvider provider) {
provider.add("gtceu.multiblock.power_substation.average_in", "§7Avg. Input: %s §7EU/t\n %s A %s");
provider.add("gtceu.multiblock.power_substation.average_in_hover",
"The average inserted EU into the Power Substation's internal energy bank");
provider.add("gtceu.multiblock.power_substation.average_out", "§7Avg. Output: %s §7EU/t\n %s A %s");
provider.add("gtceu.multiblock.power_substation.average_out",
"§7Avg. Output: %s §7EU/t\n %s A %s");
provider.add("gtceu.multiblock.power_substation.average_out_hover",
"The average extracted EU out of the Power Substation's internal energy bank");
provider.add("gtceu.multiblock.power_substation.time_to_fill", "§7Time to fill: %s");
Expand Down

0 comments on commit 501ccdd

Please sign in to comment.