diff --git a/src/main/java/org/mvplugins/multiverse/core/commands/SetSpawnCommand.java b/src/main/java/org/mvplugins/multiverse/core/commands/SetSpawnCommand.java index 4697fc810..d15d378ba 100644 --- a/src/main/java/org/mvplugins/multiverse/core/commands/SetSpawnCommand.java +++ b/src/main/java/org/mvplugins/multiverse/core/commands/SetSpawnCommand.java @@ -63,6 +63,7 @@ void onSetSpawnCommand( worldManager.getLoadedWorld(location.getWorld()) .peek(mvWorld -> mvWorld.setSpawnLocation(location) + .flatMap(ignore -> worldManager.saveWorldsConfig()) .onSuccess(ignore -> issuer.sendMessage(MVCorei18n.SETSPAWN_SUCCESS, Replace.WORLD.with(mvWorld.getName()), Replace.LOCATION.with(prettyLocation(location))))