summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-11-26 20:22:51 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-11-26 20:22:51 +0100
commitc1544a0166a13da57250eee2b60f063d461d10cd (patch)
tree51615a0a34f9fcf991d2de863fb6d2071c570608 /src/main/java/at/hannibal2/skyhanni/config
parent6d77a7113265d5dbe4f2e708b928d27f6494192d (diff)
downloadskyhanni-c1544a0166a13da57250eee2b60f063d461d10cd.tar.gz
skyhanni-c1544a0166a13da57250eee2b60f063d461d10cd.tar.bz2
skyhanni-c1544a0166a13da57250eee2b60f063d461d10cd.zip
garden grammar fixes
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/garden/GardenCommandsConfig.java8
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/garden/MoneyPerHourConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/garden/NextJacobContestConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/garden/cropmilestones/NextConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/garden/pests/PestTimerConfig.java2
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/garden/visitor/VisitorConfig.java2
6 files changed, 9 insertions, 9 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/garden/GardenCommandsConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/garden/GardenCommandsConfig.java
index 74d433a76..5f7d28b2e 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/garden/GardenCommandsConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/garden/GardenCommandsConfig.java
@@ -9,23 +9,23 @@ import org.lwjgl.input.Keyboard;
public class GardenCommandsConfig {
@Expose
- @ConfigOption(name = "Warp Commands", desc = "Enable commands §e/home§7, §e/barn §7and §e/tp <plot>§7. §cOnly works while on the garden.")
+ @ConfigOption(name = "Warp Commands", desc = "Enable commands §e/home§7, §e/barn §7and §e/tp <plot>§7. §cOnly works while in the garden.")
@ConfigEditorBoolean
@FeatureToggle
public boolean warpCommands = true;
@Expose
- @ConfigOption(name = "Home Hotkey", desc = "Press this key to teleport you to your Garden home. §cOnly works while on the garden.")
+ @ConfigOption(name = "Home Hotkey", desc = "Press this key to teleport you to your Garden home. §cOnly works while in the garden.")
@ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE)
public int homeHotkey = Keyboard.KEY_NONE;
@Expose
- @ConfigOption(name = "Sethome Hotkey", desc = "Press this key to set your Garden home. §cOnly works while on the garden.")
+ @ConfigOption(name = "Sethome Hotkey", desc = "Press this key to set your Garden home. §cOnly works while in the garden.")
@ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE)
public int sethomeHotkey = Keyboard.KEY_NONE;
@Expose
- @ConfigOption(name = "Barn Hotkey", desc = "Press this key to teleport you to the Garden barn. §cOnly works while on the garden.")
+ @ConfigOption(name = "Barn Hotkey", desc = "Press this key to teleport you to the Garden barn. §cOnly works while in the garden.")
@ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE)
public int barnHotkey = Keyboard.KEY_NONE;
}
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/garden/MoneyPerHourConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/garden/MoneyPerHourConfig.java
index 5606e5e3d..a568ebf0f 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/garden/MoneyPerHourConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/garden/MoneyPerHourConfig.java
@@ -40,7 +40,7 @@ public class MoneyPerHourConfig {
@Expose
@ConfigOption(
name = "Always On",
- desc = "Always show the money/hour Display while on the garden.")
+ desc = "Always show the money/hour Display while in the garden.")
@ConfigEditorBoolean
public boolean alwaysOn = false;
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/garden/NextJacobContestConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/garden/NextJacobContestConfig.java
index f9b0f80e4..b17f31279 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/garden/NextJacobContestConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/garden/NextJacobContestConfig.java
@@ -16,7 +16,7 @@ public class NextJacobContestConfig {
public boolean display = true;
@Expose
- @ConfigOption(name = "Outside Garden", desc = "Show the timer not only in Garden but everywhere in SkyBlock.")
+ @ConfigOption(name = "Outside Garden", desc = "Show the timer not only in the Garden but everywhere in SkyBlock.")
@ConfigEditorBoolean
public boolean everywhere = false;
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/garden/cropmilestones/NextConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/garden/cropmilestones/NextConfig.java
index 6dcd047a9..188848e48 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/garden/cropmilestones/NextConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/garden/cropmilestones/NextConfig.java
@@ -43,7 +43,7 @@ public class NextConfig {
@Expose
@ConfigOption(
name = "Always On",
- desc = "Show the Best Display always while on the garden.")
+ desc = "Show the Best Display always while in the garden.")
@ConfigEditorBoolean
public boolean bestAlwaysOn = false;
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/garden/pests/PestTimerConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/garden/pests/PestTimerConfig.java
index 4c8e1883e..43b69b2ef 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/garden/pests/PestTimerConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/garden/pests/PestTimerConfig.java
@@ -11,7 +11,7 @@ public class PestTimerConfig {
@Expose
@ConfigOption(
name = "Enabled",
- desc = "Show the time since the last pest spawned on your garden."
+ desc = "Show the time since the last pest spawned in your garden."
)
@ConfigEditorBoolean
@FeatureToggle
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/garden/visitor/VisitorConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/garden/visitor/VisitorConfig.java
index 7c93d7526..1a1883516 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/garden/visitor/VisitorConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/garden/visitor/VisitorConfig.java
@@ -60,7 +60,7 @@ public class VisitorConfig {
public boolean hypixelArrivedMessage = true;
@Expose
- @ConfigOption(name = "Hide Chat", desc = "Hide chat messages from the visitors in garden. (Except Beth, Jacob and Spaceman)")
+ @ConfigOption(name = "Hide Chat", desc = "Hide chat messages from the visitors in the garden. (Except Beth, Jacob and Spaceman)")
@ConfigEditorBoolean
@FeatureToggle
public boolean hideChat = true;