Make chat events use fabric events
[no changelog]
This commit is contained in:
20
src/main/kotlin/moe/nea/firmament/events/AllowChatEvent.kt
Normal file
20
src/main/kotlin/moe/nea/firmament/events/AllowChatEvent.kt
Normal file
@@ -0,0 +1,20 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2023 Linnea Gräf <nea@nea.moe>
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
|
||||
package moe.nea.firmament.events
|
||||
|
||||
import moe.nea.firmament.util.unformattedString
|
||||
import net.minecraft.text.Text
|
||||
|
||||
/**
|
||||
* Filter whether the user should see a chat message altogether. May or may not be called for every chat packet sent by
|
||||
* the server. When that quality is desired, consider [ProcessChatEvent] instead.
|
||||
*/
|
||||
data class AllowChatEvent(val text: Text) : FirmamentEvent.Cancellable() {
|
||||
val unformattedString = text.unformattedString
|
||||
|
||||
companion object : FirmamentEventBus<AllowChatEvent>()
|
||||
}
|
||||
Reference in New Issue
Block a user