[fix] Random formatting bug

I swear I'm not intentionally making mistakes, I'm just actually this stupid
This commit is contained in:
liv 2021-01-16 20:15:38 -05:00 committed by GitHub
parent 36c15751ff
commit b0d23b743f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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", "", "")
}
}
}