From 0e1d8fca8add091cba5c7f17b09c2abcfd8d0d9e Mon Sep 17 00:00:00 2001 From: Boy Date: Tue, 27 Jun 2023 21:52:44 +0200 Subject: [PATCH] update package --- .../src/main/kotlin/com/mineinabyss/chatty/ChattyPlugin.kt | 3 ++- .../kotlin/com/mineinabyss/chatty/event/EventContinuation.kt | 3 +-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/chatty-velocity/src/main/kotlin/com/mineinabyss/chatty/ChattyPlugin.kt b/chatty-velocity/src/main/kotlin/com/mineinabyss/chatty/ChattyPlugin.kt index e5b8980..f63b201 100644 --- a/chatty-velocity/src/main/kotlin/com/mineinabyss/chatty/ChattyPlugin.kt +++ b/chatty-velocity/src/main/kotlin/com/mineinabyss/chatty/ChattyPlugin.kt @@ -1,16 +1,17 @@ package com.mineinabyss.chatty import com.google.inject.Inject +import com.mineinabyss.chatty.event.registerCoroutineContinuationAdapter import com.velocitypowered.api.event.EventManager import com.velocitypowered.api.event.PostOrder import com.velocitypowered.api.event.Subscribe import com.velocitypowered.api.event.connection.PluginMessageEvent import com.velocitypowered.api.event.proxy.ProxyInitializeEvent -import com.velocitypowered.api.kt.event.registerCoroutineContinuationAdapter import com.velocitypowered.api.plugin.Plugin import com.velocitypowered.api.proxy.ProxyServer import com.velocitypowered.api.proxy.messages.MinecraftChannelIdentifier import org.slf4j.Logger + @Plugin(id = "chatty", name = "chatty", version = "0.3") class ChattyPlugin @Inject constructor( private val server: ProxyServer, diff --git a/chatty-velocity/src/main/kotlin/com/mineinabyss/chatty/event/EventContinuation.kt b/chatty-velocity/src/main/kotlin/com/mineinabyss/chatty/event/EventContinuation.kt index 781601c..36b713e 100644 --- a/chatty-velocity/src/main/kotlin/com/mineinabyss/chatty/event/EventContinuation.kt +++ b/chatty-velocity/src/main/kotlin/com/mineinabyss/chatty/event/EventContinuation.kt @@ -1,7 +1,6 @@ -package com.velocitypowered.api.kt.event +package com.mineinabyss.chatty.event import com.google.common.reflect.TypeToken -import com.mineinabyss.chatty.event.suspendingEventTask import com.velocitypowered.api.event.EventManager import com.velocitypowered.api.event.EventTask import org.slf4j.Logger