From b04ec4eab6e04425d70b8be73e7ca81cbc84dfaf Mon Sep 17 00:00:00 2001 From: Len <40720638+destro174@users.noreply.github.com> Date: Sun, 11 Feb 2024 14:38:23 +0100 Subject: [PATCH] Fix spawn world config --- .../src/main/java/com/alttd/essentia/configuration/Config.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/src/main/java/com/alttd/essentia/configuration/Config.java b/plugin/src/main/java/com/alttd/essentia/configuration/Config.java index 2408f87..035430f 100755 --- a/plugin/src/main/java/com/alttd/essentia/configuration/Config.java +++ b/plugin/src/main/java/com/alttd/essentia/configuration/Config.java @@ -121,7 +121,7 @@ public class Config { TELEPORT_REQUEST_TIMEOUT_MESSAGES = getBoolean("teleport-request-timeout-message", TELEPORT_REQUEST_TIMEOUT_MESSAGES); BACK_ON_DEATH = getBoolean("back-on-death", BACK_ON_DEATH); TELEPORT_SOUNDS = getBoolean("use-teleport-sounds", TELEPORT_SOUNDS); - SPAWN_WORLD = getString("use-teleport-sounds", SPAWN_WORLD); + SPAWN_WORLD = getString("spawn-world", SPAWN_WORLD); try { SOUND_TO = Sound.valueOf(config.getString("sound-to", "ENTITY_ENDERMAN_TELEPORT")); } catch (IllegalArgumentException e) {