Skip to content

Commit acaff30

Browse files
committed
Fix sponge command usage
1 parent a246da1 commit acaff30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

BlueMapSponge/src/main/java/de/bluecolored/bluemap/sponge/SpongeCommands.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ public Text getUsage(CommandSource source) {
144144

145145
List<Text> lines = new ArrayList<>();
146146
for (String usageString : dispatcher.getSmartUsage(node, source).values()) {
147-
lines.add(Text.of(TextColors.WHITE, "/", TextColors.GRAY, usageString));
147+
lines.add(Text.of(TextColors.WHITE, "/" + label + " ", TextColors.GRAY, usageString));
148148
}
149149

150150
return Text.joinWith(Text.NEW_LINE, lines);

0 commit comments

Comments
 (0)