diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-09-14 12:19:56 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-09-14 12:19:56 +0200 |
commit | 6bf8f7b9e251b814bbb3cb8e0b786eabe4a7b358 (patch) | |
tree | 7a976fb506b61d929e601d265871285432cb120d /src/main/java/at/hannibal2/skyhanni/features/misc | |
parent | 587279de1d320acb3c4093de9384ef07786be553 (diff) | |
download | skyhanni-6bf8f7b9e251b814bbb3cb8e0b786eabe4a7b358.tar.gz skyhanni-6bf8f7b9e251b814bbb3cb8e0b786eabe4a7b358.tar.bz2 skyhanni-6bf8f7b9e251b814bbb3cb8e0b786eabe4a7b358.zip |
Fixed typos in the word SkyBlock
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/misc')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/misc/discordrpc/DiscordRPCManager.kt | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/misc/items/GlowingDroppedItems.kt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/misc/discordrpc/DiscordRPCManager.kt b/src/main/java/at/hannibal2/skyhanni/features/misc/discordrpc/DiscordRPCManager.kt index 615559360..866e14a6e 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/misc/discordrpc/DiscordRPCManager.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/misc/discordrpc/DiscordRPCManager.kt @@ -152,7 +152,7 @@ object DiscordRPCManager : IPCListener { @SubscribeEvent fun onTick(event: LorenzTickEvent) { - if (startOnce || !isEnabled()) return // the mod has already started the connection process. this variable is my way of running a function when the player joins skyblock but only running it again once they join and leave. + if (startOnce || !isEnabled()) return // the mod has already started the connection process. this variable is my way of running a function when the player joins SkyBlock but only running it again once they join and leave. if (LorenzUtils.inSkyBlock) { start() startOnce = true diff --git a/src/main/java/at/hannibal2/skyhanni/features/misc/items/GlowingDroppedItems.kt b/src/main/java/at/hannibal2/skyhanni/features/misc/items/GlowingDroppedItems.kt index 4e7afc376..ac83276a1 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/misc/items/GlowingDroppedItems.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/misc/items/GlowingDroppedItems.kt @@ -17,7 +17,7 @@ class GlowingDroppedItems { private val config get() = SkyHanniMod.feature.misc.glowingDroppedItems
/**
- * List of skyblock locations where we might see items in showcases
+ * List of SkyBlock locations where we might see items in showcases
*/
private val showcaseItemLocations = setOf(
"The End",
|