修正typo。
This commit is contained in:
parent
cfbc24bebf
commit
5521b5bcfe
@ -1,16 +1,12 @@
|
|||||||
package io.github.beradq.adybubbles
|
package io.github.beradq.adybubbles
|
||||||
|
|
||||||
import ink.ptms.adyeshach.taboolib.module.chat.RawMessage
|
|
||||||
import org.bukkit.command.CommandSender
|
import org.bukkit.command.CommandSender
|
||||||
import org.bukkit.entity.Player
|
import org.bukkit.entity.Player
|
||||||
import taboolib.common.platform.command.CommandBody
|
import taboolib.common.platform.command.CommandBody
|
||||||
import taboolib.common.platform.command.CommandHeader
|
import taboolib.common.platform.command.CommandHeader
|
||||||
import taboolib.common.platform.command.subCommand
|
import taboolib.common.platform.command.subCommand
|
||||||
import taboolib.platform.util.nextChatInTick
|
|
||||||
import io.github.beradq.adybubbles.AdyBubbles.entityFinder
|
import io.github.beradq.adybubbles.AdyBubbles.entityFinder
|
||||||
import taboolib.common.platform.ProxyCommandSender
|
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.adaptCommandSender
|
||||||
import taboolib.common.platform.function.adaptPlayer
|
import taboolib.common.platform.function.adaptPlayer
|
||||||
import taboolib.module.chat.component
|
import taboolib.module.chat.component
|
||||||
@ -52,9 +48,11 @@ fun sendEditMessage(player: ProxyCommandSender, uuid: String, title: String) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@CommandHeader("bubbles-chat")
|
@CommandHeader("bubbles-chat")
|
||||||
|
@Suppress("unused")
|
||||||
object BubblesChatCommand {
|
object BubblesChatCommand {
|
||||||
|
|
||||||
@CommandBody
|
@CommandBody
|
||||||
|
@Suppress("unused")
|
||||||
val play = subCommand {
|
val play = subCommand {
|
||||||
dynamic("UUID") {
|
dynamic("UUID") {
|
||||||
suggestion<CommandSender>(uncheck = true) { _, _ ->
|
suggestion<CommandSender>(uncheck = true) { _, _ ->
|
||||||
@ -62,12 +60,13 @@ object BubblesChatCommand {
|
|||||||
}
|
}
|
||||||
execute<CommandSender> { _, context, _ ->
|
execute<CommandSender> { _, context, _ ->
|
||||||
val uuid = context["UUID"]
|
val uuid = context["UUID"]
|
||||||
TraitBubblesChat.startOnec(uuid)
|
TraitBubblesChat.startOnce(uuid)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@CommandBody
|
@CommandBody
|
||||||
|
@Suppress("unused")
|
||||||
val editdata = subCommand {
|
val editdata = subCommand {
|
||||||
dynamic("UUID") {
|
dynamic("UUID") {
|
||||||
suggestion<CommandSender>(uncheck = true) { _, _ ->
|
suggestion<CommandSender>(uncheck = true) { _, _ ->
|
||||||
@ -112,6 +111,7 @@ object BubblesChatCommand {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@CommandBody
|
@CommandBody
|
||||||
|
@Suppress("unused")
|
||||||
val edit = subCommand {
|
val edit = subCommand {
|
||||||
dynamic("NPCID") {
|
dynamic("NPCID") {
|
||||||
suggestion<CommandSender>(uncheck = true) { _, _ ->
|
suggestion<CommandSender>(uncheck = true) { _, _ ->
|
||||||
@ -135,6 +135,7 @@ object BubblesChatCommand {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@CommandBody
|
@CommandBody
|
||||||
|
@Suppress("unused")
|
||||||
val edit2 = subCommand {
|
val edit2 = subCommand {
|
||||||
dynamic("UUID") {
|
dynamic("UUID") {
|
||||||
suggestion<CommandSender>(uncheck = true) { _, _ ->
|
suggestion<CommandSender>(uncheck = true) { _, _ ->
|
||||||
|
@ -6,8 +6,10 @@ import taboolib.common.platform.command.*
|
|||||||
import taboolib.platform.util.*
|
import taboolib.platform.util.*
|
||||||
|
|
||||||
@CommandHeader("bubbles")
|
@CommandHeader("bubbles")
|
||||||
|
@Suppress("unused")
|
||||||
object BubblesCommand {
|
object BubblesCommand {
|
||||||
@CommandBody
|
@CommandBody
|
||||||
|
@Suppress("unused")
|
||||||
val popup = subCommand {
|
val popup = subCommand {
|
||||||
dynamic("NPC_ID") {
|
dynamic("NPC_ID") {
|
||||||
suggestion<CommandSender>(uncheck = true) { _, _ ->
|
suggestion<CommandSender>(uncheck = true) { _, _ ->
|
||||||
@ -62,6 +64,7 @@ object BubblesCommand {
|
|||||||
|
|
||||||
|
|
||||||
@CommandBody
|
@CommandBody
|
||||||
|
@Suppress("unused")
|
||||||
val clear = subCommand {
|
val clear = subCommand {
|
||||||
dynamic("NPC_ID") {
|
dynamic("NPC_ID") {
|
||||||
suggestion<CommandSender>(uncheck = true) { _, _ ->
|
suggestion<CommandSender>(uncheck = true) { _, _ ->
|
||||||
@ -92,6 +95,7 @@ object BubblesCommand {
|
|||||||
|
|
||||||
|
|
||||||
@CommandBody
|
@CommandBody
|
||||||
|
@Suppress("unused")
|
||||||
val reload = subCommand {
|
val reload = subCommand {
|
||||||
execute<CommandSender> { sender, _, _ ->
|
execute<CommandSender> { sender, _, _ ->
|
||||||
Config.reload()
|
Config.reload()
|
||||||
|
@ -11,7 +11,6 @@ import taboolib.common.platform.event.EventPriority
|
|||||||
import taboolib.common.platform.event.SubscribeEvent
|
import taboolib.common.platform.event.SubscribeEvent
|
||||||
import taboolib.common.platform.function.submit
|
import taboolib.common.platform.function.submit
|
||||||
import taboolib.common.platform.service.PlatformExecutor
|
import taboolib.common.platform.service.PlatformExecutor
|
||||||
import taboolib.common5.clong
|
|
||||||
import taboolib.module.chat.uncolored
|
import taboolib.module.chat.uncolored
|
||||||
import java.util.concurrent.CompletableFuture
|
import java.util.concurrent.CompletableFuture
|
||||||
|
|
||||||
@ -27,6 +26,7 @@ object TraitBubblesChat : Trait() {
|
|||||||
return Bubbles(items.toMutableList(), mode)
|
return Bubbles(items.toMutableList(), mode)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Suppress("unused")
|
||||||
fun setBubbles(uuid: String, bubbles: Bubbles) {
|
fun setBubbles(uuid: String, bubbles: Bubbles) {
|
||||||
data[uuid] = mapOf(
|
data[uuid] = mapOf(
|
||||||
"items" to bubbles.items,
|
"items" to bubbles.items,
|
||||||
@ -93,7 +93,7 @@ object TraitBubblesChat : Trait() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun startOnec(uuid: String) {
|
fun startOnce(uuid: String) {
|
||||||
val bubble = bubbles[uuid] ?: return
|
val bubble = bubbles[uuid] ?: return
|
||||||
if (bubble.mode != ChatPopupMode.ONCE) return
|
if (bubble.mode != ChatPopupMode.ONCE) return
|
||||||
bubble.resetState()
|
bubble.resetState()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user