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 +}