summaryrefslogtreecommitdiffstats
path: root/nms-patches/PlayerSelector.patch
blob: e5583a10ca5d2c28d077c65d1b182f2a3c9ee7f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--- ../work/decompile-bb26c12b/net/minecraft/server/PlayerSelector.java	2014-11-27 08:59:46.865421124 +1100
+++ src/main/java/net/minecraft/server/PlayerSelector.java	2014-11-27 08:42:10.140850934 +1100
@@ -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, "@")) {