diff options
author | nea <nea@nea.moe> | 2023-10-01 18:55:16 +0200 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-10-01 18:55:16 +0200 |
commit | 9e49de5c8bd482fd3ab8ef24bcff669764b6ffb3 (patch) | |
tree | f7f3a9affe31d39e9f5479a5a44cea1ac8167877 | |
parent | 040dbca01439e6fd6afbb911beb09d73d2ee0d1e (diff) | |
download | Firmament-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.kt | 2 |
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, |