diff options
author | jani270 <69345714+jani270@users.noreply.github.com> | 2024-11-17 17:11:08 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-11-17 17:33:59 +0100 |
commit | d8f9706aee9099573c557f99ba0dbdc80aacbfe4 (patch) | |
tree | ff9a3b358bbf710e10f402374a051d66401c09dd /src | |
parent | 970dfddaf9e80d6b206f411139227397f4d9e847 (diff) | |
download | Firmament-d8f9706aee9099573c557f99ba0dbdc80aacbfe4.tar.gz Firmament-d8f9706aee9099573c557f99ba0dbdc80aacbfe4.tar.bz2 Firmament-d8f9706aee9099573c557f99ba0dbdc80aacbfe4.zip |
fix: Some Item Rarity Colors being wrong (eg. Divine being Blue instead of Aqua)
Diffstat (limited to 'src')
-rw-r--r-- | src/main/kotlin/features/inventory/ItemRarityCosmetics.kt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main/kotlin/features/inventory/ItemRarityCosmetics.kt b/src/main/kotlin/features/inventory/ItemRarityCosmetics.kt index a659c79..d2c555b 100644 --- a/src/main/kotlin/features/inventory/ItemRarityCosmetics.kt +++ b/src/main/kotlin/features/inventory/ItemRarityCosmetics.kt @@ -30,15 +30,15 @@ object ItemRarityCosmetics : FirmamentFeature { get() = TConfig private val rarityToColor = mapOf( - Rarity.UNCOMMON to Formatting.GREEN, Rarity.COMMON to Formatting.WHITE, - Rarity.RARE to Formatting.DARK_BLUE, + Rarity.UNCOMMON to Formatting.GREEN, + Rarity.RARE to Formatting.BLUE, Rarity.EPIC to Formatting.DARK_PURPLE, Rarity.LEGENDARY to Formatting.GOLD, Rarity.MYTHIC to Formatting.LIGHT_PURPLE, - Rarity.DIVINE to Formatting.BLUE, - Rarity.SPECIAL to Formatting.DARK_RED, - Rarity.VERY_SPECIAL to Formatting.DARK_RED, + Rarity.DIVINE to Formatting.AQUA, + Rarity.SPECIAL to Formatting.RED, + Rarity.VERY_SPECIAL to Formatting.RED, Rarity.SUPREME to Formatting.DARK_RED, ).mapValues { val c = Color(it.value.colorValue!!) |