SPIGOT-742: Throw an exception instead of passing null when the sender cannot be converted
This commit is contained in:
parent
85cf593df9
commit
a25c96eda7
@ -161,7 +161,7 @@ public final class VanillaCommandWrapper extends VanillaCommand {
|
||||
if (sender instanceof ProxiedCommandSender) {
|
||||
return ((ProxiedNativeCommandSender) sender).getHandle();
|
||||
}
|
||||
return null;
|
||||
throw new IllegalArgumentException("Cannot make " + sender + " a vanilla command listener");
|
||||
}
|
||||
|
||||
private int getPlayerListSize(String as[]) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user