Compare commits

..

2 Commits

Author SHA1 Message Date
Auxilor
af198d30f7 Updated to 6.27.3 2022-03-08 08:25:45 +00:00
Auxilor
637b239c66 Fixed MiniMessage on 1.18.2 2022-03-08 08:25:25 +00:00
2 changed files with 5 additions and 3 deletions

View File

@@ -22,8 +22,10 @@ class MiniMessageTranslator : MiniMessageTranslatorProxy {
).toLegacy()
}.getOrNull() ?: mut
if (startsWithPrefix) {
mut = Display.PREFIX + miniMessage
mut = if (startsWithPrefix) {
Display.PREFIX + miniMessage
} else {
miniMessage
}
return mut

View File

@@ -1,3 +1,3 @@
version = 6.27.2
version = 6.27.3
plugin-name = eco
kotlin.code.style = official