aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0908-API-for-an-entity-s-scoreboard-name.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0908-API-for-an-entity-s-scoreboard-name.patch')
-rw-r--r--patches/server/0908-API-for-an-entity-s-scoreboard-name.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/patches/server/0908-API-for-an-entity-s-scoreboard-name.patch b/patches/server/0908-API-for-an-entity-s-scoreboard-name.patch
new file mode 100644
index 0000000000..dbff93ae56
--- /dev/null
+++ b/patches/server/0908-API-for-an-entity-s-scoreboard-name.patch
@@ -0,0 +1,24 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Jake Potrebic <[email protected]>
+Date: Sun, 9 Jul 2023 11:55:02 -0700
+Subject: [PATCH] API for an entity's scoreboard name
+
+Was obtainable through different methods, but you had to use different
+methods depending on the implementation of Entity you were working with.
+
+diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java
+index 8086eae45b03fd53bc7cac625b51fc10d8523f4f..d91d56175e91fb06138901bad56c1c2544b3d20e 100644
+--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java
++++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java
+@@ -1216,4 +1216,11 @@ public abstract class CraftEntity implements org.bukkit.entity.Entity {
+ return !this.getHandle().level().noCollision(this.getHandle(), aabb);
+ }
+ // Paper end - Collision API
++
++ // Paper start - entity scoreboard name
++ @Override
++ public String getScoreboardEntryName() {
++ return this.getHandle().getScoreboardName();
++ }
++ // Paper end - entity scoreboard name
+ }