Skip to content

Commit

Permalink
Update GuiHelper.java
Browse files Browse the repository at this point in the history
  • Loading branch information
reobf authored Dec 9, 2024
1 parent 82cee37 commit b66da86
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ public static List<String> getItemTooltip(ItemStack stack) {
tooltips = stack.getTooltip(context.getPlayer(), modularGui.mc.gameSettings.advancedItemTooltips);
} catch (Throwable ignored) {
tooltips = new ArrayList<>(1);
tooltips.set(0, "Error");
tooltips.add("Error");
}
for (int i = 0; i < tooltips.size(); i++) {
if (i == 0) {
Expand Down

0 comments on commit b66da86

Please sign in to comment.