aboutsummaryrefslogtreecommitdiff
path: root/spark-bukkit/src
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-bukkit/src
parentcf3ce4d9d7c443e0051eb7cff7dc71cf2a0eb851 (diff)
downloadspark-32f6355c8c7fc1611140bfcce6afe8b25cea5697.tar.gz
spark-32f6355c8c7fc1611140bfcce6afe8b25cea5697.tar.bz2
spark-32f6355c8c7fc1611140bfcce6afe8b25cea5697.zip
Activity log improvements
Diffstat (limited to 'spark-bukkit/src')
-rw-r--r--spark-bukkit/src/main/java/me/lucko/spark/bukkit/BukkitCommandSender.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/spark-bukkit/src/main/java/me/lucko/spark/bukkit/BukkitCommandSender.java b/spark-bukkit/src/main/java/me/lucko/spark/bukkit/BukkitCommandSender.java
index dacea76..d353845 100644
--- a/spark-bukkit/src/main/java/me/lucko/spark/bukkit/BukkitCommandSender.java
+++ b/spark-bukkit/src/main/java/me/lucko/spark/bukkit/BukkitCommandSender.java
@@ -23,6 +23,9 @@ package me.lucko.spark.bukkit;
import me.lucko.spark.common.CommandSender;
import net.kyori.text.Component;
import net.kyori.text.adapter.bukkit.TextAdapter;
+import org.bukkit.entity.Player;
+
+import java.util.UUID;
public class BukkitCommandSender implements CommandSender {
private final org.bukkit.command.CommandSender sender;
@@ -37,6 +40,14 @@ public class BukkitCommandSender implements CommandSender {
}
@Override
+ public UUID getUniqueId() {
+ if (this.sender instanceof Player) {
+ return ((Player) this.sender).getUniqueId();
+ }
+ return null;
+ }
+
+ @Override
public void sendMessage(Component message) {
TextAdapter.sendComponent(this.sender, message);
}