SPIGOT-5572: Fix console/API completion of Vanilla commands
By: md_5 <git@md-5.net>
This commit is contained in:
parent
416eb5c343
commit
e714c00b96
1 changed files with 1 additions and 1 deletions
|
@ -91,6 +91,6 @@ public final class VanillaCommandWrapper extends BukkitCommand {
|
|||
}
|
||||
|
||||
private String toDispatcher(String[] args, String name) {
|
||||
return "/" + name + ((args.length > 0) ? " " + Joiner.on(' ').join(args) : "");
|
||||
return name + ((args.length > 0) ? " " + Joiner.on(' ').join(args) : "");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue