aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/events/entity
diff options
context:
space:
mode:
authorEmpa <42304516+ItsEmpa@users.noreply.github.com>2024-06-02 10:11:16 +0200
committerGitHub <noreply@github.com>2024-06-02 10:11:16 +0200
commit191e24ef1d95f2af571c917237817f8e1648ea0b (patch)
tree941e36445db5f8d1aa3a672d4b6434cdc98df4d7 /src/main/java/at/hannibal2/skyhanni/events/entity
parent4c838a148544a862b7a52ba68347d0d5715e7b5e (diff)
downloadskyhanni-191e24ef1d95f2af571c917237817f8e1648ea0b.tar.gz
skyhanni-191e24ef1d95f2af571c917237817f8e1648ea0b.tar.bz2
skyhanni-191e24ef1d95f2af571c917237817f8e1648ea0b.zip
Improvement: Contributor nametag (#1687)
Co-authored-by: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> Co-authored-by: Cal <cwolfson58@gmail.com> Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/events/entity')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/events/entity/EntityDisplayNameEvent.kt7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/events/entity/EntityDisplayNameEvent.kt b/src/main/java/at/hannibal2/skyhanni/events/entity/EntityDisplayNameEvent.kt
new file mode 100644
index 000000000..1a3bcfed4
--- /dev/null
+++ b/src/main/java/at/hannibal2/skyhanni/events/entity/EntityDisplayNameEvent.kt
@@ -0,0 +1,7 @@
+package at.hannibal2.skyhanni.events.entity
+
+import at.hannibal2.skyhanni.events.LorenzEvent
+import net.minecraft.entity.Entity
+import net.minecraft.util.IChatComponent
+
+class EntityDisplayNameEvent(val entity: Entity, var chatComponent: IChatComponent) : LorenzEvent()