diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/misc/items/enchants/Enchant.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/misc/items/enchants/Enchant.kt b/src/main/java/at/hannibal2/skyhanni/features/misc/items/enchants/Enchant.kt index a3069ecdf..a44be9824 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/misc/items/enchants/Enchant.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/misc/items/enchants/Enchant.kt @@ -25,7 +25,7 @@ open class Enchant : Comparable<Enchant> { open fun getFormat(level: Int): String { val config = SkyHanniMod.feature.inventory.enchantParsing - + // TODO change color to string (support for bold) if (level >= maxLevel) return config.perfectEnchantColor.get().getChatColor() if (level > goodLevel) return config.greatEnchantColor.get().getChatColor() if (level == goodLevel) return config.goodEnchantColor.get().getChatColor() |