From 191e24ef1d95f2af571c917237817f8e1648ea0b Mon Sep 17 00:00:00 2001 From: Empa <42304516+ItsEmpa@users.noreply.github.com> Date: Sun, 2 Jun 2024 10:11:16 +0200 Subject: Improvement: Contributor nametag (#1687) Co-authored-by: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> Co-authored-by: Cal Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com> --- .../at/hannibal2/skyhanni/events/entity/EntityDisplayNameEvent.kt | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/main/java/at/hannibal2/skyhanni/events/entity/EntityDisplayNameEvent.kt (limited to 'src/main/java/at/hannibal2/skyhanni/events/entity') 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() -- cgit