aboutsummaryrefslogtreecommitdiff
path: root/spark-velocity
diff options
context:
space:
mode:
authorLuck <git@lucko.me>2019-05-13 10:57:06 +0100
committerLuck <git@lucko.me>2019-05-13 10:57:06 +0100
commit32f6355c8c7fc1611140bfcce6afe8b25cea5697 (patch)
treed2f87081d98f312ff46ba734c104ff730c848d4f /spark-velocity
parentcf3ce4d9d7c443e0051eb7cff7dc71cf2a0eb851 (diff)
downloadspark-32f6355c8c7fc1611140bfcce6afe8b25cea5697.tar.gz
spark-32f6355c8c7fc1611140bfcce6afe8b25cea5697.tar.bz2
spark-32f6355c8c7fc1611140bfcce6afe8b25cea5697.zip
Activity log improvements
Diffstat (limited to 'spark-velocity')
-rw-r--r--spark-velocity/src/main/java/me/lucko/spark/velocity/VelocityCommandSender.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/spark-velocity/src/main/java/me/lucko/spark/velocity/VelocityCommandSender.java b/spark-velocity/src/main/java/me/lucko/spark/velocity/VelocityCommandSender.java
index 1cad493..e9b4474 100644
--- a/spark-velocity/src/main/java/me/lucko/spark/velocity/VelocityCommandSender.java
+++ b/spark-velocity/src/main/java/me/lucko/spark/velocity/VelocityCommandSender.java
@@ -26,6 +26,8 @@ import com.velocitypowered.api.proxy.Player;
import me.lucko.spark.common.CommandSender;
import net.kyori.text.Component;
+import java.util.UUID;
+
public class VelocityCommandSender implements CommandSender {
private final CommandSource source;
@@ -45,6 +47,14 @@ public class VelocityCommandSender implements CommandSender {
}
@Override
+ public UUID getUniqueId() {
+ if (this.source instanceof Player) {
+ return ((Player) this.source).getUniqueId();
+ }
+ return null;
+ }
+
+ @Override
public void sendMessage(Component message) {
this.source.sendMessage(message);
}