diff --git a/BlueMapCommon/src/main/java/de/bluecolored/bluemap/common/plugin/commands/Commands.java b/BlueMapCommon/src/main/java/de/bluecolored/bluemap/common/plugin/commands/Commands.java index f9e739cd..ec66d641 100644 --- a/BlueMapCommon/src/main/java/de/bluecolored/bluemap/common/plugin/commands/Commands.java +++ b/BlueMapCommon/src/main/java/de/bluecolored/bluemap/common/plugin/commands/Commands.java @@ -311,7 +311,10 @@ public class Commands { return 0; } - source.sendMessages(helper.createStatusMessage()); + new Thread(() -> { + source.sendMessages(helper.createStatusMessage()); + }, "BlueMap-Plugin-StatusCommand").start(); + return 1; }