Fix name function once again & bump to 1.0.5

This commit is contained in:
2025-04-09 22:49:35 -07:00
parent 55eb70578b
commit a0150464c3
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ plugins {
} }
group = "xyz.lncvrt" group = "xyz.lncvrt"
version = "1.0.5-SNAPSHOT" version = "1.0.5"
repositories { repositories {
mavenCentral() mavenCentral()

View File

@@ -4,7 +4,7 @@ package xyz.lncvrt.galaxyapi.utils
class MessageFormat { class MessageFormat {
companion object { companion object {
fun name(bold: Boolean): String { fun name(bold: Boolean): String {
val name = "<gradient:#${Colors.SECONDARY}:#${Colors.PRIMARY}:#${Colors.SECONDARY}>GalaxyNetwork</gradient" val name = "<gradient:#${Colors.SECONDARY}:#${Colors.PRIMARY}:#${Colors.SECONDARY}>GalaxyNetwork</gradient>"
return if (bold) { return if (bold) {
"<bold>${name}</bold>" "<bold>${name}</bold>"
} else { } else {