diff --git a/plugin-playground/src/main/kotlin/KondoKit/Helpers.kt b/plugin-playground/src/main/kotlin/KondoKit/Helpers.kt index 066edd1..faec99f 100644 --- a/plugin-playground/src/main/kotlin/KondoKit/Helpers.kt +++ b/plugin-playground/src/main/kotlin/KondoKit/Helpers.kt @@ -191,8 +191,10 @@ object Helpers { } fun formatHtmlLabelText(text1: String, color1: Color, text2: String, color2: Color): String { - return "$text1" + - "$text2" + return "
" + + "$text1" + + "$text2" + + "
" } fun formatNumber(value: Int): String { diff --git a/plugin-playground/src/main/kotlin/LoginTimer/plugin.kt b/plugin-playground/src/main/kotlin/LoginTimer/plugin.kt index 0ba67f7..806f726 100644 --- a/plugin-playground/src/main/kotlin/LoginTimer/plugin.kt +++ b/plugin-playground/src/main/kotlin/LoginTimer/plugin.kt @@ -35,6 +35,10 @@ class plugin : Plugin() { displayMessageCounter = 0 } + override fun OnPluginsReloaded(): Boolean { + return true + } + override fun Draw(timeDelta: Long) { if (component == null) return diff --git a/plugin-playground/src/main/kotlin/LoginTimer/plugin.properties b/plugin-playground/src/main/kotlin/LoginTimer/plugin.properties index 1ebf1f5..1f9beaa 100644 --- a/plugin-playground/src/main/kotlin/LoginTimer/plugin.properties +++ b/plugin-playground/src/main/kotlin/LoginTimer/plugin.properties @@ -1,3 +1,3 @@ AUTHOR='Woahscam, Ceikry' DESCRIPTION='Displays the session time played, system time, or no time over the "Report Abuse" button.' -VERSION=1.2 \ No newline at end of file +VERSION=1.1 \ No newline at end of file