Skip to content

Commit

Permalink
Fix UCFE Scanner Info (#3566)
Browse files Browse the repository at this point in the history
  • Loading branch information
CookieBrigade authored Nov 28, 2024
1 parent a9d5783 commit 6c43c61
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ public boolean onRunningTick(ItemStack stack) {
public String[] getInfoData() {
String[] info = super.getInfoData();
info[4] = "Currently generates: " + EnumChatFormatting.RED
+ GTUtility.formatNumbers(this.getPowerFlow())
+ GTUtility.formatNumbers(this.getPowerFlow() * tEff)
+ EnumChatFormatting.RESET
+ " EU/t";
info[6] = "Problems: " + EnumChatFormatting.RED
Expand Down

0 comments on commit 6c43c61

Please sign in to comment.