From 5709ce9d8229d5ac9b21bfd931414fc444cb3533 Mon Sep 17 00:00:00 2001 From: Vatuu <21113232+Vatuu@users.noreply.github.com> Date: Thu, 28 Jul 2022 15:54:31 +0200 Subject: [PATCH] Fixed the QOL command being a bitch. --- src/main/java/com/volmit/iris/core/commands/CommandIris.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/volmit/iris/core/commands/CommandIris.java b/src/main/java/com/volmit/iris/core/commands/CommandIris.java index 5e8cbae78..c6c2aec7e 100644 --- a/src/main/java/com/volmit/iris/core/commands/CommandIris.java +++ b/src/main/java/com/volmit/iris/core/commands/CommandIris.java @@ -140,7 +140,7 @@ public class CommandIris implements DecreeExecutor { sender().sendMessage(C.GREEN + "Total Height: " + (sender().player().getWorld().getMaxHeight() - sender().player().getWorld().getMinHeight())); } - @Decree(description = "QOL command to open a overworld studio world.") + @Decree(description = "QOL command to open a overworld studio world.", sync = true) public void so() { sender().sendMessage(C.GREEN + "Opening studio for the \"Overworld\" pack (seed: 1337)"); Iris.service(StudioSVC.class).open(sender(), 1337, "overworld");