diff --git a/src/main/kotlin/io/github/beradq/adybubbles/BubblesChatCommand.kt b/src/main/kotlin/io/github/beradq/adybubbles/BubblesChatCommand.kt index 027eed3..44b61f7 100644 --- a/src/main/kotlin/io/github/beradq/adybubbles/BubblesChatCommand.kt +++ b/src/main/kotlin/io/github/beradq/adybubbles/BubblesChatCommand.kt @@ -1,16 +1,12 @@ package io.github.beradq.adybubbles -import ink.ptms.adyeshach.taboolib.module.chat.RawMessage import org.bukkit.command.CommandSender import org.bukkit.entity.Player import taboolib.common.platform.command.CommandBody import taboolib.common.platform.command.CommandHeader import taboolib.common.platform.command.subCommand -import taboolib.platform.util.nextChatInTick import io.github.beradq.adybubbles.AdyBubbles.entityFinder import taboolib.common.platform.ProxyCommandSender -import taboolib.common.platform.ProxyPlayer -import taboolib.common.platform.command.CommandContext import taboolib.common.platform.function.adaptCommandSender import taboolib.common.platform.function.adaptPlayer import taboolib.module.chat.component @@ -52,9 +48,11 @@ fun sendEditMessage(player: ProxyCommandSender, uuid: String, title: String) { } @CommandHeader("bubbles-chat") +@Suppress("unused") object BubblesChatCommand { @CommandBody + @Suppress("unused") val play = subCommand { dynamic("UUID") { suggestion(uncheck = true) { _, _ -> @@ -62,12 +60,13 @@ object BubblesChatCommand { } execute { _, context, _ -> val uuid = context["UUID"] - TraitBubblesChat.startOnec(uuid) + TraitBubblesChat.startOnce(uuid) } } } @CommandBody + @Suppress("unused") val editdata = subCommand { dynamic("UUID") { suggestion(uncheck = true) { _, _ -> @@ -112,6 +111,7 @@ object BubblesChatCommand { } @CommandBody + @Suppress("unused") val edit = subCommand { dynamic("NPCID") { suggestion(uncheck = true) { _, _ -> @@ -135,6 +135,7 @@ object BubblesChatCommand { } @CommandBody + @Suppress("unused") val edit2 = subCommand { dynamic("UUID") { suggestion(uncheck = true) { _, _ -> diff --git a/src/main/kotlin/io/github/beradq/adybubbles/BubblesCommand.kt b/src/main/kotlin/io/github/beradq/adybubbles/BubblesCommand.kt index e9c6ef3..6725e4f 100644 --- a/src/main/kotlin/io/github/beradq/adybubbles/BubblesCommand.kt +++ b/src/main/kotlin/io/github/beradq/adybubbles/BubblesCommand.kt @@ -6,8 +6,10 @@ import taboolib.common.platform.command.* import taboolib.platform.util.* @CommandHeader("bubbles") +@Suppress("unused") object BubblesCommand { @CommandBody + @Suppress("unused") val popup = subCommand { dynamic("NPC_ID") { suggestion(uncheck = true) { _, _ -> @@ -62,6 +64,7 @@ object BubblesCommand { @CommandBody + @Suppress("unused") val clear = subCommand { dynamic("NPC_ID") { suggestion(uncheck = true) { _, _ -> @@ -92,6 +95,7 @@ object BubblesCommand { @CommandBody + @Suppress("unused") val reload = subCommand { execute { sender, _, _ -> Config.reload() diff --git a/src/main/kotlin/io/github/beradq/adybubbles/TraitBubblesChat.kt b/src/main/kotlin/io/github/beradq/adybubbles/TraitBubblesChat.kt index c8628a5..569e3f4 100644 --- a/src/main/kotlin/io/github/beradq/adybubbles/TraitBubblesChat.kt +++ b/src/main/kotlin/io/github/beradq/adybubbles/TraitBubblesChat.kt @@ -11,7 +11,6 @@ import taboolib.common.platform.event.EventPriority import taboolib.common.platform.event.SubscribeEvent import taboolib.common.platform.function.submit import taboolib.common.platform.service.PlatformExecutor -import taboolib.common5.clong import taboolib.module.chat.uncolored import java.util.concurrent.CompletableFuture @@ -27,6 +26,7 @@ object TraitBubblesChat : Trait() { return Bubbles(items.toMutableList(), mode) } + @Suppress("unused") fun setBubbles(uuid: String, bubbles: Bubbles) { data[uuid] = mapOf( "items" to bubbles.items, @@ -93,7 +93,7 @@ object TraitBubblesChat : Trait() { } } - fun startOnec(uuid: String) { + fun startOnce(uuid: String) { val bubble = bubbles[uuid] ?: return if (bubble.mode != ChatPopupMode.ONCE) return bubble.resetState()