aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorThunderblade73 <85900443+Thunderblade73@users.noreply.github.com>2024-05-26 12:23:02 +0200
committerGitHub <noreply@github.com>2024-05-26 12:23:02 +0200
commitea1385c77ffa8b9a4f98811fbf3e767c30d9edf7 (patch)
tree668444c961f0e8fc23cf5e52b38c11e33ad74b11 /src/main/java/at/hannibal2/skyhanni/config
parenta214c141696f054b79c6ac13cb309992e3ac95d1 (diff)
downloadskyhanni-ea1385c77ffa8b9a4f98811fbf3e767c30d9edf7.tar.gz
skyhanni-ea1385c77ffa8b9a4f98811fbf3e767c30d9edf7.tar.bz2
skyhanni-ea1385c77ffa8b9a4f98811fbf3e767c30d9edf7.zip
Fix Typos (#1897)
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/ConfigManager.kt4
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/fishing/BarnTimerConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/inventory/chocolatefactory/ChocolateFactoryConfig.java4
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/inventory/helper/TiaRelayConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/itemability/ChickenHeadConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/misc/compacttablist/AdvancedPlayerListConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/misc/cosmetic/ArrowTrailConfig.java2
7 files changed, 9 insertions, 9 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/ConfigManager.kt b/src/main/java/at/hannibal2/skyhanni/config/ConfigManager.kt
index 5c85c97ec..f4f870b72 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/ConfigManager.kt
+++ b/src/main/java/at/hannibal2/skyhanni/config/ConfigManager.kt
@@ -216,7 +216,7 @@ class ConfigManager {
}
}
- // Some position elements dont need config links as they dont have a config option.
+ // Some position elements don't need config links as they don't have a config option.
private val ignoredMissingConfigLinks = listOf(
// commands
"features.garden.GardenConfig.cropSpeedMeterPos",
@@ -292,7 +292,7 @@ class ConfigManager {
run()
} catch (e: Throwable) {
e.printStackTrace()
- LorenzUtils.shutdownMinecraft("Config is corrupt inside developement enviroment.")
+ LorenzUtils.shutdownMinecraft("Config is corrupt inside development environment.")
}
} else {
run()
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/fishing/BarnTimerConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/fishing/BarnTimerConfig.java
index 1cc46da60..c5992856b 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/fishing/BarnTimerConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/fishing/BarnTimerConfig.java
@@ -61,7 +61,7 @@ public class BarnTimerConfig {
public boolean wormLimitAlert = true;
@Expose
- @ConfigOption(name = "Reset Timer Hotkey", desc = "Press this key to reset the timer manualy")
+ @ConfigOption(name = "Reset Timer Hotkey", desc = "Press this key to reset the timer manually")
@ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE)
public int manualResetTimer = Keyboard.KEY_NONE;
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/chocolatefactory/ChocolateFactoryConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/chocolatefactory/ChocolateFactoryConfig.java
index 3f86dfefe..db49702d9 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/chocolatefactory/ChocolateFactoryConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/chocolatefactory/ChocolateFactoryConfig.java
@@ -126,13 +126,13 @@ public class ChocolateFactoryConfig {
public Position position = new Position(163, 160, false, true);
@Expose
- @ConfigOption(name = "Compact On Click", desc = "Compact the item toolip when clicking on the chocolate.")
+ @ConfigOption(name = "Compact On Click", desc = "Compact the item tooltip when clicking on the chocolate.")
@ConfigEditorBoolean
@FeatureToggle
public boolean compactOnClick = true;
@Expose
- @ConfigOption(name = "Always Compact", desc = "Always Compact the item toolip on the chocolate. Requires the above option to be enabled.")
+ @ConfigOption(name = "Always Compact", desc = "Always Compact the item tooltip on the chocolate. Requires the above option to be enabled.")
@ConfigEditorBoolean
public boolean compactOnClickAlways = false;
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/helper/TiaRelayConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/helper/TiaRelayConfig.java
index 16dfbb8ef..c51707f45 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/helper/TiaRelayConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/helper/TiaRelayConfig.java
@@ -8,7 +8,7 @@ import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
public class TiaRelayConfig {
@Expose
- @ConfigOption(name = "Sound Puzzle Helper", desc = "Helps with solving the sound puzzle for Tia (The 9 Operator Chips to do maintainance for the Abiphone Network).")
+ @ConfigOption(name = "Sound Puzzle Helper", desc = "Helps with solving the sound puzzle for Tia (The 9 Operator Chips to do maintenance for the Abiphone Network).")
@ConfigEditorBoolean
@FeatureToggle
public boolean soundHelper = true;
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/itemability/ChickenHeadConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/itemability/ChickenHeadConfig.java
index 68dce34a5..ecae45026 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/itemability/ChickenHeadConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/itemability/ChickenHeadConfig.java
@@ -10,7 +10,7 @@ import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
public class ChickenHeadConfig {
@Expose
- @ConfigOption(name = "Checken Head Timer", desc = "Show the cooldown until the next time you can lay an egg with the Chicken Head.")
+ @ConfigOption(name = "Chicken Head Timer", desc = "Show the cooldown until the next time you can lay an egg with the Chicken Head.")
@ConfigEditorBoolean
@FeatureToggle
public boolean displayTimer = false;
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/misc/compacttablist/AdvancedPlayerListConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/misc/compacttablist/AdvancedPlayerListConfig.java
index a7652967e..d28f107fb 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/misc/compacttablist/AdvancedPlayerListConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/misc/compacttablist/AdvancedPlayerListConfig.java
@@ -81,7 +81,7 @@ public class AdvancedPlayerListConfig {
public boolean useLevelColorForName = false;
@Expose
- @ConfigOption(name = "Bingo Rank Number", desc = "Show the number of the bingo rank next to the icon. Useful if you are not so familar with bingo.")
+ @ConfigOption(name = "Bingo Rank Number", desc = "Show the number of the bingo rank next to the icon. Useful if you are not so familiar with bingo.")
@ConfigEditorBoolean
public boolean showBingoRankNumber = false;
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/misc/cosmetic/ArrowTrailConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/misc/cosmetic/ArrowTrailConfig.java
index 9195de6f8..203b47075 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/misc/cosmetic/ArrowTrailConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/misc/cosmetic/ArrowTrailConfig.java
@@ -15,7 +15,7 @@ public class ArrowTrailConfig {
public boolean enabled = false;
@Expose
- @ConfigOption(name = "Hide Nonplayer Arrows", desc = "Only shows for arrows the player has shot.")
+ @ConfigOption(name = "Hide Non-player Arrows", desc = "Only shows for arrows the player has shot.")
@ConfigEditorBoolean
public boolean hideOtherArrows = true;