Merge pull request #842 from creeper123123321/bug-fix/tab-complete

Fix tab completion on Sponge
This commit is contained in:
Myles 2018-06-14 18:05:09 +01:00 committed by GitHub
commit 684c25dc2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,7 +27,7 @@ public class SpongeCommandHandler extends ViaCommandHandler implements CommandCa
}
public List<String> getSuggestions(CommandSource source, String arguments) throws CommandException {
String[] args = arguments.length() > 0 ? arguments.split(" ") : new String[0];
String[] args = arguments.split(" "); // ViaCommandHandler handles empty String in array
return onTabComplete(new SpongeCommandSender(source), args);
}