diff options
| author | Roman / Nea <roman.graef@gmail.com> | 2022-07-14 19:57:37 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-14 19:57:37 +0200 |
| commit | 6489385cabc021cc36b487151b5d6c85d7617390 (patch) | |
| tree | 37370f9e12f20961cc11f216841ea1420bdcc90b /src/main/java/io/github/moulberry/notenoughupdates/commands/help/LinksCommand.java | |
| parent | 36be173ff0505942fd9b54a39f64b703f1510d9e (diff) | |
| download | notenoughupdates-6489385cabc021cc36b487151b5d6c85d7617390.tar.gz notenoughupdates-6489385cabc021cc36b487151b5d6c85d7617390.tar.bz2 notenoughupdates-6489385cabc021cc36b487151b5d6c85d7617390.zip | |
Various fixes regarding finalizing the release ig (#186)
* Fix Sign calc not aligning properly with the GuiEditSign
* "Fix" official wiki rendering.
This one didnt receive extensive testing, but so far it works
* Update notification changes
* Dont reset the config lol
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/commands/help/LinksCommand.java')
| -rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/commands/help/LinksCommand.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/commands/help/LinksCommand.java b/src/main/java/io/github/moulberry/notenoughupdates/commands/help/LinksCommand.java index cb8ba6ed..9938403c 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/commands/help/LinksCommand.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/commands/help/LinksCommand.java @@ -44,7 +44,7 @@ public class LinksCommand extends ClientCommandBase { JsonObject update = NotEnoughUpdates.INSTANCE.manager.getJsonFromFile(updateJson); Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText("")); - NotEnoughUpdates.INSTANCE.displayLinks(update); + NotEnoughUpdates.INSTANCE.displayLinks(update,0 ); Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText("")); } catch (Exception ignored) { } |
