Skip to content

Commit

Permalink
fix: Lazy fix macro stacktrace (#1911)
Browse files Browse the repository at this point in the history
  • Loading branch information
NotMyFault authored Aug 24, 2022
1 parent 60ad2b5 commit d5acb4e
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,13 +115,14 @@ public UtilityCommands(WorldEdit we) {
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(
Expand Down

0 comments on commit d5acb4e

Please sign in to comment.