summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/events
diff options
context:
space:
mode:
authorCalMWolfs <94038482+CalMWolfs@users.noreply.github.com>2023-09-23 21:36:29 +1000
committerGitHub <noreply@github.com>2023-09-23 13:36:29 +0200
commitf617d59f1c52ad77f23ce28fb14bf44986e38ed1 (patch)
tree46d622e473a60ffe6d457cc426765f4213fbcb57 /src/main/java/at/hannibal2/skyhanni/events
parent9ff6418d5fc3c4c866cb98e31a9ff38d788d9f77 (diff)
downloadskyhanni-f617d59f1c52ad77f23ce28fb14bf44986e38ed1.tar.gz
skyhanni-f617d59f1c52ad77f23ce28fb14bf44986e38ed1.tar.bz2
skyhanni-f617d59f1c52ad77f23ce28fb14bf44986e38ed1.zip
chat message changes #482
* add chat component functions * reword + remove empty text * remove type * isPlayerMessage * include the other stuff in the translator pr plus format * Merge branch 'hannibal002:beta' into chat_component_stuff * Merge remote-tracking branch 'origin/chat_component_stuff' into chat_… * allow to work with priv messages + get ready for future
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/events')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/events/LorenzChatEvent.kt7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/events/LorenzChatEvent.kt b/src/main/java/at/hannibal2/skyhanni/events/LorenzChatEvent.kt
index e20e05b01..6b50e2092 100644
--- a/src/main/java/at/hannibal2/skyhanni/events/LorenzChatEvent.kt
+++ b/src/main/java/at/hannibal2/skyhanni/events/LorenzChatEvent.kt
@@ -2,5 +2,8 @@ package at.hannibal2.skyhanni.events
import net.minecraft.util.IChatComponent
-class LorenzChatEvent(val message: String, var chatComponent: IChatComponent, var blockedReason: String = "") :
- LorenzEvent() \ No newline at end of file
+class LorenzChatEvent(
+ var message: String,
+ var chatComponent: IChatComponent,
+ var blockedReason: String = ""
+) : LorenzEvent() \ No newline at end of file