aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornea <nea@nea.moe>2023-10-01 18:55:16 +0200
committernea <nea@nea.moe>2023-10-01 18:55:16 +0200
commit9e49de5c8bd482fd3ab8ef24bcff669764b6ffb3 (patch)
treef7f3a9affe31d39e9f5479a5a44cea1ac8167877
parent040dbca01439e6fd6afbb911beb09d73d2ee0d1e (diff)
downloadFirmament-9e49de5c8bd482fd3ab8ef24bcff669764b6ffb3.tar.gz
Firmament-9e49de5c8bd482fd3ab8ef24bcff669764b6ffb3.tar.bz2
Firmament-9e49de5c8bd482fd3ab8ef24bcff669764b6ffb3.zip
Fix item rarity not being rendered correctly for uncommon items
[no changelog]
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/inventory/ItemRarityCosmetics.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/features/inventory/ItemRarityCosmetics.kt b/src/main/kotlin/moe/nea/firmament/features/inventory/ItemRarityCosmetics.kt
index 2017b40..f3af27d 100644
--- a/src/main/kotlin/moe/nea/firmament/features/inventory/ItemRarityCosmetics.kt
+++ b/src/main/kotlin/moe/nea/firmament/features/inventory/ItemRarityCosmetics.kt
@@ -31,8 +31,8 @@ object ItemRarityCosmetics : FirmamentFeature {
get() = TConfig
private val rarityToColor = mapOf(
- "COMMON" to Formatting.WHITE,
"UNCOMMON" to Formatting.GREEN,
+ "COMMON" to Formatting.WHITE,
"RARE" to Formatting.DARK_BLUE,
"EPIC" to Formatting.DARK_PURPLE,
"LEGENDARY" to Formatting.GOLD,