mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-27 21:19:00 +01:00
13 lines
532 B
Diff
13 lines
532 B
Diff
|
@@ -52,6 +52,11 @@
|
||
|
}
|
||
|
|
||
|
public static List getPlayers(ICommandListener icommandlistener, String s, Class oclass) {
|
||
|
+ // CraftBukkit start - disable playerselections for ICommandListeners other than command blocks
|
||
|
+ if (!(icommandlistener instanceof CommandBlockListenerAbstract)) {
|
||
|
+ return com.google.common.collect.ImmutableList.of();
|
||
|
+ }
|
||
|
+ // CraftBukkit end
|
||
|
Matcher matcher = PlayerSelector.a.matcher(s);
|
||
|
|
||
|
if (matcher.matches() && icommandlistener.a(1, "@")) {
|