We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5168bfc commit dfbbf7dCopy full SHA for dfbbf7d
BlueMapSponge/src/main/java/de/bluecolored/bluemap/sponge/Commands.java
@@ -46,6 +46,9 @@ public Commands(SpongePlugin plugin) {
46
public CommandSpec createRootCommand() {
47
48
CommandSpec debugCommand = CommandSpec.builder()
49
+ .permission("bluemap.debug")
50
+ .description(Text.of("Prints some debug info"))
51
+ .extendedDescription(Text.of("Prints some information about how bluemap sees the blocks at and below your position"))
52
.executor((source, args) -> {
53
if (source instanceof Locatable) {
54
Location<org.spongepowered.api.world.World> loc = ((Locatable) source).getLocation();
0 commit comments