Rename event bus

This commit is contained in:
nea
2023-05-16 03:42:06 +02:00
parent fbe8bc680b
commit 01f3981959
8 changed files with 18 additions and 18 deletions

View File

@@ -8,6 +8,6 @@ import moe.nea.firmament.util.Locraw
* **N.B.:** This event may get fired multiple times while on the server (for example, first to null, then to the
* correct location).
*/
data class SkyblockServerUpdateEvent(val oldLocraw: Locraw?, val newLocraw: Locraw?) : NEUEvent() {
companion object : NEUEventBus<SkyblockServerUpdateEvent>()
data class SkyblockServerUpdateEvent(val oldLocraw: Locraw?, val newLocraw: Locraw?) : FirmamentEvent() {
companion object : FirmamentEventBus<SkyblockServerUpdateEvent>()
}