3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-18 12:30:06 +01:00

Ignore player selectors if not a Command Block.

Dieser Commit ist enthalten in:
EvilSeph 2014-02-11 00:36:16 -05:00
Ursprung 776e256ff1
Commit 9131f5b550

Datei anzeigen

@ -33,6 +33,12 @@ public class PlayerSelector {
}
public static EntityPlayer[] getPlayers(ICommandListener icommandlistener, String s) {
// CraftBukkit start
if (!(icommandlistener instanceof CommandBlockListenerAbstract)) {
return null;
}
// CraftBukkit end
Matcher matcher = a.matcher(s);
if (!matcher.matches()) {