From b0d23b743f45fe868e7d9ddecc9140d67a39e2f1 Mon Sep 17 00:00:00 2001 From: liv Date: Sat, 16 Jan 2021 20:15:38 -0500 Subject: [PATCH] [fix] Random formatting bug I swear I'm not intentionally making mistakes, I'm just actually this stupid --- .../me/zeroeightsix/kami/module/modules/chat/ChatTimestamp.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/me/zeroeightsix/kami/module/modules/chat/ChatTimestamp.kt b/src/main/java/me/zeroeightsix/kami/module/modules/chat/ChatTimestamp.kt index 29c2df434..f4a139d9d 100644 --- a/src/main/java/me/zeroeightsix/kami/module/modules/chat/ChatTimestamp.kt +++ b/src/main/java/me/zeroeightsix/kami/module/modules/chat/ChatTimestamp.kt @@ -32,7 +32,7 @@ internal object ChatTimestamp : Module( get() = "${separator.left}${color format TimeUtils.getTime(timeFormat, timeUnit)}${separator.right} " val time: String - get() = "${separator.left}${TimeUtils.getTime(timeFormat, timeUnit)}${separator.right}" + get() = "${separator.left}${TimeUtils.getTime(timeFormat, timeUnit)}${separator.right} " @Suppress("unused") private enum class Separator(override val displayName: String, val left: String, val right: String) : DisplayEnum { @@ -42,4 +42,4 @@ internal object ChatTimestamp : Module( ROUND_BRACKETS("( )", "(", ")"), NONE("None", "", "") } -} \ No newline at end of file +}