diff options
Diffstat (limited to 'src')
3 files changed, 4 insertions, 3 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/About.java b/src/main/java/at/hannibal2/skyhanni/config/features/About.java index 0bb71a7e1..c969dcdca 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/About.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/About.java @@ -8,7 +8,6 @@ import io.github.moulberry.notenoughupdates.util.Utils; public class About { - @ConfigOption(name = "Current Version", desc = "This is the SkyHanni version you are running currently") @ConfigVersionDisplay public Void currentVersion = null; diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/DicerRngDropCounter.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/DicerRngDropCounter.kt index b77ab61f0..7f2facf4f 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/DicerRngDropCounter.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/DicerRngDropCounter.kt @@ -7,6 +7,7 @@ import at.hannibal2.skyhanni.events.GuiRenderEvent import at.hannibal2.skyhanni.events.LorenzChatEvent import at.hannibal2.skyhanni.utils.ItemUtils.name import at.hannibal2.skyhanni.utils.LorenzUtils.sortedDesc +import at.hannibal2.skyhanni.utils.NumberUtil.addSeparators import at.hannibal2.skyhanni.utils.RenderUtils.renderStrings import net.minecraftforge.fml.common.eventhandler.SubscribeEvent @@ -66,7 +67,7 @@ class DicerRngDropCounter { help.add("§7RNG Drops for $toolName§7:") for ((rarity, amount) in items.sortedDesc()) { val displayName = rarity.displayName - help.add(" §7- §e${amount}x $displayName") + help.add(" §7- §e${amount.addSeparators()}x $displayName") } return help diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/FarmingArmorDrops.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/FarmingArmorDrops.kt index 33759c25f..c56347122 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/FarmingArmorDrops.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/FarmingArmorDrops.kt @@ -7,6 +7,7 @@ import at.hannibal2.skyhanni.events.LorenzChatEvent import at.hannibal2.skyhanni.utils.InventoryUtils import at.hannibal2.skyhanni.utils.ItemUtils.getInternalName import at.hannibal2.skyhanni.utils.LorenzUtils.sortedDesc +import at.hannibal2.skyhanni.utils.NumberUtil.addSeparators import at.hannibal2.skyhanni.utils.RenderUtils.renderStrings import net.minecraftforge.fml.common.eventhandler.SubscribeEvent import net.minecraftforge.fml.common.gameevent.TickEvent @@ -54,7 +55,7 @@ class FarmingArmorDrops { help.add("§7RNG Drops for Farming Armor:") for ((drop, amount) in drops.sortedDesc()) { val dropName = drop.dropName - help.add(" §7- §e${amount}x $dropName") + help.add(" §7- §e${amount.addSeparators()}x $dropName") } return help |