mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 12:02:36 +01:00
a419776f3c
For more information please see http://www.spigotmc.org/ By: Thinkofdeath <thinkofdeath@spigotmc.org>
14 lines
735 B
Diff
14 lines
735 B
Diff
--- ../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, "@")) {
|