diff options
author | Absterge <106860128+Absterge@users.noreply.github.com> | 2023-10-05 00:05:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-05 01:05:48 +0200 |
commit | b87a60ff321111234e976667be277d206787dba4 (patch) | |
tree | 3625ba88e6f7d5b2e437a802e85c1ac8446107ca | |
parent | c3a9516a09d01469c1317d556fddffa5dbd04306 (diff) | |
download | skyhanni-b87a60ff321111234e976667be277d206787dba4.tar.gz skyhanni-b87a60ff321111234e976667be277d206787dba4.tar.bz2 skyhanni-b87a60ff321111234e976667be277d206787dba4.zip |
Typo in Position Editor (#534)
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/GardenConfig.java | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/slayer/SlayerRngMeterDisplay.kt | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index abd8477da..b70a15e7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -512,7 +512,7 @@ + Added a workaround for a crash when refusing a visitor - hannibal2 + Added support for new counter drops to dicer rng counter - ReyMaratov + Fixed composter inventory numbers after Hypixel changes - hannibal2 -+ Rng dicer chat hider now works without enabling drop counter ++ RNG dicer chat hider now works without enabling drop counter + Server restart timer no longer shows all the time if over 2 minutes + Fixed crazy rare drops not counting properly - ReyMaratov + Fixed individual attribute prices in estimated item value - nea diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/GardenConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/GardenConfig.java index 2c948a62f..aed826e3c 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/GardenConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/GardenConfig.java @@ -839,7 +839,7 @@ public class GardenConfig { public boolean dicerCounter = false; @Expose - @ConfigOption(name = "Rng Drop Counter", desc = "Count RNG drops for Melon Dicer and Pumpkin Dicer.") + @ConfigOption(name = "RNG Drop Counter", desc = "Count RNG drops for Melon Dicer and Pumpkin Dicer.") @ConfigEditorBoolean @ConfigAccordionId(id = 12) @FeatureToggle diff --git a/src/main/java/at/hannibal2/skyhanni/features/slayer/SlayerRngMeterDisplay.kt b/src/main/java/at/hannibal2/skyhanni/features/slayer/SlayerRngMeterDisplay.kt index c55468be3..cb40e10a5 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/slayer/SlayerRngMeterDisplay.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/slayer/SlayerRngMeterDisplay.kt @@ -170,7 +170,7 @@ class SlayerRngMeterDisplay { if (!SlayerAPI.isInCorrectArea) return if (!SlayerAPI.hasActiveSlayerQuest()) return - config.pos.renderString(display, posLabel = "Rng Meter Display") + config.pos.renderString(display, posLabel = "RNG Meter Display") } fun isEnabled() = LorenzUtils.inSkyBlock && config.enabled |