From 6c58ca9311f5d001ac94af164fd30911cade3886 Mon Sep 17 00:00:00 2001 From: RedJulu <120446598+RedJulu@users.noreply.github.com> Date: Sat, 21 Feb 2026 21:39:36 +0100 Subject: [PATCH] Fix typo in Pterodactyl API Endpoint configuration --- .../java/com/partymann2000/config/ModMenuIntegration.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/client/java/com/partymann2000/config/ModMenuIntegration.java b/src/client/java/com/partymann2000/config/ModMenuIntegration.java index ef864c7..b1835ba 100644 --- a/src/client/java/com/partymann2000/config/ModMenuIntegration.java +++ b/src/client/java/com/partymann2000/config/ModMenuIntegration.java @@ -28,9 +28,9 @@ public ConfigScreenFactory getModConfigScreenFactory() { ConfigCategory general = builder.getOrCreateCategory(Text.literal("API-Einstellungen")); ConfigEntryBuilder entryBuilder = builder.entryBuilder(); - general.addEntry(entryBuilder.startStrField(Text.literal("Pterodactyl API Entpoint"), ConfigManager.CONFIG.API_ENDPOINT) + general.addEntry(entryBuilder.startStrField(Text.literal("Pterodactyl API Endpoint"), ConfigManager.CONFIG.API_ENDPOINT) .setDefaultValue("https://panel..com/") - .setTooltip(Text.literal("Pterodactyl API Entpoint")) + .setTooltip(Text.literal("Pterodactyl API Endpoint")) .setSaveConsumer(newValue -> ConfigManager.CONFIG.API_ENDPOINT = newValue) .build()); @@ -49,4 +49,4 @@ public ConfigScreenFactory getModConfigScreenFactory() { return builder.build(); }; } -} \ No newline at end of file +}