diff options
author | Luck <git@lucko.me> | 2019-04-17 10:06:47 +0100 |
---|---|---|
committer | Luck <git@lucko.me> | 2019-04-17 10:06:47 +0100 |
commit | 88857e015d3be6f894592204d76d8580eae0ac9b (patch) | |
tree | 60b87660120586542877bc4343a84f571ee2aae1 /spark-velocity | |
parent | e7b1797731508202c62dfa5bdc1c4d779f5cbfd1 (diff) | |
download | spark-88857e015d3be6f894592204d76d8580eae0ac9b.tar.gz spark-88857e015d3be6f894592204d76d8580eae0ac9b.tar.bz2 spark-88857e015d3be6f894592204d76d8580eae0ac9b.zip |
Fix permission checking
Diffstat (limited to 'spark-velocity')
-rw-r--r-- | spark-velocity/src/main/java/me/lucko/spark/velocity/SparkVelocityPlugin.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/spark-velocity/src/main/java/me/lucko/spark/velocity/SparkVelocityPlugin.java b/spark-velocity/src/main/java/me/lucko/spark/velocity/SparkVelocityPlugin.java index fef48e7..749319d 100644 --- a/spark-velocity/src/main/java/me/lucko/spark/velocity/SparkVelocityPlugin.java +++ b/spark-velocity/src/main/java/me/lucko/spark/velocity/SparkVelocityPlugin.java @@ -103,8 +103,9 @@ public class SparkVelocityPlugin implements SparkPlugin<CommandSource>, Command } @Override - public Set<CommandSource> getSenders() { + public Set<CommandSource> getSendersWithPermission(String permission) { Set<CommandSource> senders = new HashSet<>(this.proxy.getAllPlayers()); + senders.removeIf(sender -> !sender.hasPermission(permission)); senders.add(this.proxy.getConsoleCommandSource()); return senders; } |