aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCalMWolfs <94038482+CalMWolfs@users.noreply.github.com>2023-09-15 17:24:42 +1000
committerGitHub <noreply@github.com>2023-09-15 09:24:42 +0200
commit54a5b0c591470cf0ee247977ecef7cbdcddc5172 (patch)
tree479e28709ed97215db57c0a7af0d51223638f901
parent21558b67f46538f86340a6bcf1e19a5081f7eb16 (diff)
downloadskyhanni-54a5b0c591470cf0ee247977ecef7cbdcddc5172.tar.gz
skyhanni-54a5b0c591470cf0ee247977ecef7cbdcddc5172.tar.bz2
skyhanni-54a5b0c591470cf0ee247977ecef7cbdcddc5172.zip
Skyblock -> SkyBlock (except SBA) (#479)
Typos and stuff #479
-rw-r--r--CHANGELOG.md2
-rw-r--r--FEATURES.md2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/GardenConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonChatFilter.kt2
4 files changed, 4 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5c017e189..a2d17dae2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -627,7 +627,7 @@
+ Added Desk shortcut in SkyBlock Menu.
+ Added **Garden Level Display**
+ Show the current garden level and progress to the next level.
-+ Added **Farming Weight and Leaderboard**, provided by the Elite SkyBlock Farmers.
++ Added **Farming Weight and Leaderboard**, provided by the Elite SkyBlock farmers.
+ Added farming weight next leaderboard position eta.
+ Added **Dicer Counter**
+ Count RNG drops for Melon Dicer and Pumpkin Dicer.
diff --git a/FEATURES.md b/FEATURES.md
index ce1426d8e..bfd0a549c 100644
--- a/FEATURES.md
+++ b/FEATURES.md
@@ -319,7 +319,7 @@ Use `/sh` or `/skyhanni` to open the SkyHanni config in game.
+ Desk shortcut in SkyBlock Menu.
+ **Garden Level Display** - Show the current garden level and progress to the next level.
+ **Farming Weight and Leaderboard**
- + provided by the Elite SkyBlock Farmers.
+ + provided by the Elite SkyBlock farmers.
+ next leaderboard position eta.
+ Instantly showing the next player in the lb when passing someone on the leaderboard. - Kaeso
+ Chat message how many places you dropped in the farming weight lb when joining garden.
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 70200055d..b2078e815 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/GardenConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/GardenConfig.java
@@ -775,7 +775,7 @@ public class GardenConfig {
@Expose
@ConfigOption(name = "Display", desc = "Display your farming weight on screen. " +
- "The calculation and API is provided by The Elite SkyBlock Farmers. " +
+ "The calculation and API is provided by The Elite SkyBlock farmers. " +
"See §ehttps://elitebot.dev/info §7for more info.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 11)
diff --git a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonChatFilter.kt b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonChatFilter.kt
index b98021f2f..5559ba14a 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonChatFilter.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonChatFilter.kt
@@ -12,7 +12,7 @@ class DungeonChatFilter {
fun onChatMessage(event: LorenzChatEvent) {
if (!LorenzUtils.onHypixel) return
- // Workaround since the potion message gets always sent in that moment when SkyBlock is set as false
+ // Workaround since the potion message gets always sent at that moment when SkyBlock is set as false
if (!LorenzUtils.inSkyBlock && !event.message.startsWith("§aYour active Potion Effects")) return
if (!SkyHanniMod.feature.chat.dungeonMessages) return