修正typo。
This commit is contained in:
parent
cfbc24bebf
commit
5521b5bcfe
@ -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<CommandSender>(uncheck = true) { _, _ ->
|
||||
@ -62,12 +60,13 @@ object BubblesChatCommand {
|
||||
}
|
||||
execute<CommandSender> { _, context, _ ->
|
||||
val uuid = context["UUID"]
|
||||
TraitBubblesChat.startOnec(uuid)
|
||||
TraitBubblesChat.startOnce(uuid)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@CommandBody
|
||||
@Suppress("unused")
|
||||
val editdata = subCommand {
|
||||
dynamic("UUID") {
|
||||
suggestion<CommandSender>(uncheck = true) { _, _ ->
|
||||
@ -112,6 +111,7 @@ object BubblesChatCommand {
|
||||
}
|
||||
|
||||
@CommandBody
|
||||
@Suppress("unused")
|
||||
val edit = subCommand {
|
||||
dynamic("NPCID") {
|
||||
suggestion<CommandSender>(uncheck = true) { _, _ ->
|
||||
@ -135,6 +135,7 @@ object BubblesChatCommand {
|
||||
}
|
||||
|
||||
@CommandBody
|
||||
@Suppress("unused")
|
||||
val edit2 = subCommand {
|
||||
dynamic("UUID") {
|
||||
suggestion<CommandSender>(uncheck = true) { _, _ ->
|
||||
|
@ -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<CommandSender>(uncheck = true) { _, _ ->
|
||||
@ -62,6 +64,7 @@ object BubblesCommand {
|
||||
|
||||
|
||||
@CommandBody
|
||||
@Suppress("unused")
|
||||
val clear = subCommand {
|
||||
dynamic("NPC_ID") {
|
||||
suggestion<CommandSender>(uncheck = true) { _, _ ->
|
||||
@ -92,6 +95,7 @@ object BubblesCommand {
|
||||
|
||||
|
||||
@CommandBody
|
||||
@Suppress("unused")
|
||||
val reload = subCommand {
|
||||
execute<CommandSender> { sender, _, _ ->
|
||||
Config.reload()
|
||||
|
@ -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()
|
||||
|
Loading…
x
Reference in New Issue
Block a user