geforkt von Mirrors/Paper
Fixed AIOOBE when entering a space into console and hitting enter.
By: EvilSeph <evilseph@unaligned.org>
Dieser Commit ist enthalten in:
Ursprung
fbb5ca1dc6
Commit
865f44281e
@ -69,6 +69,11 @@ public final class SimpleCommandMap implements CommandMap {
|
|||||||
*/
|
*/
|
||||||
public boolean dispatch(CommandSender sender, String commandLine) {
|
public boolean dispatch(CommandSender sender, String commandLine) {
|
||||||
String[] args = commandLine.split(" ");
|
String[] args = commandLine.split(" ");
|
||||||
|
|
||||||
|
if (args.length == 0) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
String sentCommandLabel = args[0].toLowerCase();
|
String sentCommandLabel = args[0].toLowerCase();
|
||||||
|
|
||||||
args = Arrays_copyOfRange(args, 1, args.length);
|
args = Arrays_copyOfRange(args, 1, args.length);
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren