Skip to content

Commit

Permalink
better fisher tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
TechLord22 committed Sep 7, 2021
1 parent 3771afa commit c8fa004
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public void renderMetaTileEntity(CCRenderState renderState, Matrix4 translation,
public void addInformation(ItemStack stack, @Nullable World player, List<String> tooltip, boolean advanced) {
tooltip.add(I18n.format("gregtech.machine.fisher.tooltip"));
tooltip.add(I18n.format("gregtech.machine.fisher.speed", fishingTicks));
tooltip.add(I18n.format("gregtech.machine.fisher.requirement", (int) Math.sqrt(WATER_CHECK_SIZE)));
tooltip.add(I18n.format("gregtech.machine.fisher.requirement", (int) Math.sqrt(WATER_CHECK_SIZE), (int) Math.sqrt(WATER_CHECK_SIZE)));
tooltip.add(I18n.format("gregtech.universal.tooltip.voltage_in", energyContainer.getInputVoltage(), GTValues.VN[getTier()]));
tooltip.add(I18n.format("gregtech.universal.tooltip.energy_storage_capacity", energyContainer.getEnergyCapacity()));
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/assets/gregtech/lang/en_us.lang
Original file line number Diff line number Diff line change
Expand Up @@ -3282,7 +3282,7 @@ gregtech.machine.fisher.hv.name=Advanced Fisher II
gregtech.machine.fisher.ev.name=Advanced Fisher III
gregtech.machine.fisher.tooltip=Costs string to fish. Consumes one string each time.
gregtech.machine.fisher.speed=Catches something every %,d ticks
gregtech.machine.fisher.requirement=Requires a square of water with size of %,d blocks directly below.
gregtech.machine.fisher.requirement=Requires a %,dx%,d centered square of water directly below.

# General machinery
gregtech.machine.basic.input_from_output_side.allow=Allow Input from Output Side
Expand Down

0 comments on commit c8fa004

Please sign in to comment.