diff options
Diffstat (limited to 'src/main/kotlin/moe/nea/firmament/events/SkyblockServerUpdateEvent.kt')
-rw-r--r-- | src/main/kotlin/moe/nea/firmament/events/SkyblockServerUpdateEvent.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/events/SkyblockServerUpdateEvent.kt b/src/main/kotlin/moe/nea/firmament/events/SkyblockServerUpdateEvent.kt index ae3227f..c505bf2 100644 --- a/src/main/kotlin/moe/nea/firmament/events/SkyblockServerUpdateEvent.kt +++ b/src/main/kotlin/moe/nea/firmament/events/SkyblockServerUpdateEvent.kt @@ -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>() } |