diff --git a/BlueMapSponge/src/main/java/de/bluecolored/bluemap/sponge/Commands.java b/BlueMapSponge/src/main/java/de/bluecolored/bluemap/sponge/Commands.java index 2641bafd..d7d7221e 100644 --- a/BlueMapSponge/src/main/java/de/bluecolored/bluemap/sponge/Commands.java +++ b/BlueMapSponge/src/main/java/de/bluecolored/bluemap/sponge/Commands.java @@ -46,6 +46,9 @@ public Commands(SpongePlugin plugin) { public CommandSpec createRootCommand() { CommandSpec debugCommand = CommandSpec.builder() + .permission("bluemap.debug") + .description(Text.of("Prints some debug info")) + .extendedDescription(Text.of("Prints some information about how bluemap sees the blocks at and below your position")) .executor((source, args) -> { if (source instanceof Locatable) { Location loc = ((Locatable) source).getLocation();