From d5acb4ec516572b3b4ddd929278d5bb508f5e133 Mon Sep 17 00:00:00 2001 From: Alexander Brandes Date: Wed, 24 Aug 2022 10:02:25 +0200 Subject: [PATCH] fix: Lazy fix macro stacktrace (#1911) --- .../java/com/sk89q/worldedit/command/UtilityCommands.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/command/UtilityCommands.java b/worldedit-core/src/main/java/com/sk89q/worldedit/command/UtilityCommands.java index 4e516cede..b3403bba4 100644 --- a/worldedit-core/src/main/java/com/sk89q/worldedit/command/UtilityCommands.java +++ b/worldedit-core/src/main/java/com/sk89q/worldedit/command/UtilityCommands.java @@ -115,13 +115,14 @@ public class UtilityCommands { this.we = we; } + // TODO: Reimplement @Command( name = "/macro", desc = "Generate or run a macro" ) @CommandPermissions("worldedit.macro") - public void macro(Actor actor, LocalSession session, String name, String argument) throws IOException { - + public void macro(Actor actor) { + actor.print(TextComponent.of("This command is currently not implemented.")); } @Command(