From ec0230794e64f5b0d5c7b74cd68b452fb098f84c Mon Sep 17 00:00:00 2001 From: BERADQ Date: Wed, 6 Nov 2024 23:25:53 +0800 Subject: [PATCH] =?UTF-8?q?=E9=98=B2=E6=AD=A2=E4=BD=A0=E7=9C=8B=E4=B8=8D?= =?UTF-8?q?=E5=88=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../io/github/beradq/adybubbles/AdyBubbles.kt | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/src/main/kotlin/io/github/beradq/adybubbles/AdyBubbles.kt b/src/main/kotlin/io/github/beradq/adybubbles/AdyBubbles.kt index 6b90ce1..f7ef68d 100644 --- a/src/main/kotlin/io/github/beradq/adybubbles/AdyBubbles.kt +++ b/src/main/kotlin/io/github/beradq/adybubbles/AdyBubbles.kt @@ -4,6 +4,7 @@ import ink.ptms.adyeshach.core.Adyeshach import ink.ptms.adyeshach.core.AdyeshachAPI import taboolib.common.platform.Plugin import taboolib.common.platform.function.info +import taboolib.common.platform.function.submit // ___ __ ____ __ __ __ // / | ____/ /_ __/ __ )__ __/ /_ / /_ / /__ _____ @@ -15,6 +16,7 @@ import taboolib.common.platform.function.info object AdyBubbles : Plugin() { + const val versionName = "2.5.1" val adyApi: AdyeshachAPI = Adyeshach.api() val hologramHandler = adyApi.getHologramHandler() @@ -24,12 +26,15 @@ object AdyBubbles : Plugin() { } override fun onActive() { - info("\u001B[36m" + " ___ __ ____ __ __ __ " + "\u001B[0m") - info("\u001B[36m" + " / | ____/ /_ __/ __ )__ __/ /_ / /_ / /__ _____" + "\u001B[0m") - info("\u001B[36m" + " / /| |/ __ / / / / __ / / / / __ \\/ __ \\/ / _ \\/ ___/" + "\u001B[0m") - info("\u001B[36m" + " / ___ / /_/ / /_/ / /_/ / /_/ / /_/ / /_/ / / __(__ ) " + "\u001B[0m") - info("\u001B[36m" + "/_/ |_\\__,_/\\__, /_____/\\__,_/_.___/_.___/_/\\___/____/ " + "\u001B[0m") - info("\u001B[36m" + " /____/ " + "\u001B[0m") - info("\u001B[34m" + "AdyBubbles" + "\u001B[32m" + " 已加载!" + "\u001B[0m") + submit(delay = 600L) { + info("\u001B[36m" + " ___ __ ____ __ __ __ " + "\u001B[0m") + info("\u001B[36m" + " / | ____/ /_ __/ __ )__ __/ /_ / /_ / /__ _____" + "\u001B[0m") + info("\u001B[36m" + " / /| |/ __ / / / / __ / / / / __ \\/ __ \\/ / _ \\/ ___/" + "\u001B[0m") + info("\u001B[36m" + " / ___ / /_/ / /_/ / /_/ / /_/ / /_/ / /_/ / / __(__ ) " + "\u001B[0m") + info("\u001B[36m" + "/_/ |_\\__,_/\\__, /_____/\\__,_/_.___/_.___/_/\\___/____/ " + "\u001B[0m") + info("\u001B[36m" + " /____/ " + "\u001B[0m") + info("\u001B[34mAdyBubbles \u001B[33m$versionName\u001B[32m 已加载!\u001B[0m") + this.cancel() + } } }