aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/events
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal002@users.noreply.github.com>2024-08-02 11:08:16 +0200
committerGitHub <noreply@github.com>2024-08-02 11:08:16 +0200
commit7a6c175ead0be52201f62d116dba953e5e112fa8 (patch)
treef984bdb70cafcec2b1ef1787e7ebee084ef98001 /src/main/java/at/hannibal2/skyhanni/events
parent32e7a457983a0a6050d7db8bd99dec52a5164979 (diff)
downloadskyhanni-7a6c175ead0be52201f62d116dba953e5e112fa8.tar.gz
skyhanni-7a6c175ead0be52201f62d116dba953e5e112fa8.tar.bz2
skyhanni-7a6c175ead0be52201f62d116dba953e5e112fa8.zip
Fix: Contributor nametag flicker Patcher (#2296)
Co-authored-by: nea <nea@nea.moe>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/events')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/events/entity/EntityDisplayNameEvent.kt4
1 files changed, 2 insertions, 2 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
index 1a3bcfed4..c4d24eb0a 100644
--- a/src/main/java/at/hannibal2/skyhanni/events/entity/EntityDisplayNameEvent.kt
+++ b/src/main/java/at/hannibal2/skyhanni/events/entity/EntityDisplayNameEvent.kt
@@ -2,6 +2,6 @@ package at.hannibal2.skyhanni.events.entity
import at.hannibal2.skyhanni.events.LorenzEvent
import net.minecraft.entity.Entity
-import net.minecraft.util.IChatComponent
+import net.minecraft.util.ChatComponentText
-class EntityDisplayNameEvent(val entity: Entity, var chatComponent: IChatComponent) : LorenzEvent()
+class EntityDisplayNameEvent(val entity: Entity, var chatComponent: ChatComponentText) : LorenzEvent()