From 0648cfd3fa2eaa6a24a6c8b12282c33c3b6b6fe6 Mon Sep 17 00:00:00 2001 From: Julian Krings Date: Mon, 28 Jul 2025 15:16:21 +0200 Subject: [PATCH] add message for promotion of world to main world --- .../src/main/java/com/volmit/iris/core/commands/CommandIris.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/main/java/com/volmit/iris/core/commands/CommandIris.java b/core/src/main/java/com/volmit/iris/core/commands/CommandIris.java index 89fa7cf5f..3f1c0b588 100644 --- a/core/src/main/java/com/volmit/iris/core/commands/CommandIris.java +++ b/core/src/main/java/com/volmit/iris/core/commands/CommandIris.java @@ -123,6 +123,7 @@ public class CommandIris implements DecreeExecutor { } worldCreation = false; sender().sendMessage(C.GREEN + "Successfully created your world!"); + if (main) sender().sendMessage(C.GREEN + "Your world will automatically be set as the main world when the server restarts."); } @SneakyThrows