mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-13 22:25:31 +01:00
90ac03522a
This reverts commit d6e3dff7d8
.
15 lines
736 B
Diff
15 lines
736 B
Diff
--- ../work/decompile-8eb82bde//net/minecraft/server/PlayerSelector.java 2014-11-28 17:43:43.337707430 +0000
|
|
+++ src/main/java/net/minecraft/server/PlayerSelector.java 2014-11-28 17:38:17.000000000 +0000
|
|
@@ -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, "@")) {
|