Skip to content

Commit 99f5123

Browse files
committed
Fix Item Collector Range Tooltip
1 parent 420bcb2 commit 99f5123

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/gregtechceu/gtceu/common/data/GTMachines.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ public class GTMachines {
549549
.tooltips(
550550
Component.translatable("gtceu.machine.item_collector.tooltip"),
551551
Component.translatable("gtceu.machine.item_collector.gui.collect_range",
552-
IntMath.pow(2, tier + 2), IntMath.pow(2, tier + 2)),
552+
2 * IntMath.pow(2, tier + 2) + 1, 2 * IntMath.pow(2, tier + 2) + 1),
553553
Component.translatable("gtceu.universal.tooltip.voltage_in",
554554
FormattingUtil.formatNumbers(GTValues.V[tier]),
555555
GTValues.VNF[tier]),

0 commit comments

Comments
 (0)