22 lines
612 B
Kotlin
22 lines
612 B
Kotlin
/*
|
|
* SPDX-FileCopyrightText: 2023 Linnea Gräf <nea@nea.moe>
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
package moe.nea.firmament.events
|
|
|
|
import net.minecraft.text.Text
|
|
import moe.nea.firmament.util.unformattedString
|
|
|
|
/**
|
|
* Published just before a message is added to the chat gui. Cancelling only prevents rendering, not logging to the
|
|
* console.
|
|
*/
|
|
data class ClientChatLineReceivedEvent(val text: Text) : FirmamentEvent.Cancellable() {
|
|
val unformattedString = text.unformattedString
|
|
var replaceWith: Text = text
|
|
|
|
companion object : FirmamentEventBus<ClientChatLineReceivedEvent>()
|
|
}
|