From 06326f4d5505df062f5fe3bafca683e6e2f4067b Mon Sep 17 00:00:00 2001 From: CocoTheOwner Date: Tue, 21 Sep 2021 19:46:09 +0200 Subject: [PATCH] Add another update message to make sure the command is ran --- src/main/java/com/volmit/iris/core/commands/CommandStudio.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/com/volmit/iris/core/commands/CommandStudio.java b/src/main/java/com/volmit/iris/core/commands/CommandStudio.java index 2c06be6c4..1a1baf3bf 100644 --- a/src/main/java/com/volmit/iris/core/commands/CommandStudio.java +++ b/src/main/java/com/volmit/iris/core/commands/CommandStudio.java @@ -663,6 +663,7 @@ public class CommandStudio implements DecreeExecutor { @Param(description = "The dimension to update the workspace of", contextual = true, defaultValue = "overworld") IrisDimension dimension ) { + sender().sendMessage(C.GOLD + "Updating Code Workspace for " + dimension.getName() + "..."); if (new IrisProject(dimension.getLoader().getDataFolder()).updateWorkspace()) { sender().sendMessage(C.GREEN + "Updated Code Workspace for " + dimension.getName()); } else {