diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-26 20:22:51 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-26 20:22:51 +0100 |
commit | c1544a0166a13da57250eee2b60f063d461d10cd (patch) | |
tree | 51615a0a34f9fcf991d2de863fb6d2071c570608 /src/main/java | |
parent | 6d77a7113265d5dbe4f2e708b928d27f6494192d (diff) | |
download | skyhanni-c1544a0166a13da57250eee2b60f063d461d10cd.tar.gz skyhanni-c1544a0166a13da57250eee2b60f063d461d10cd.tar.bz2 skyhanni-c1544a0166a13da57250eee2b60f063d461d10cd.zip |
garden grammar fixes
Diffstat (limited to 'src/main/java')
8 files changed, 13 insertions, 13 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; diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/GardenPlotBorders.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/GardenPlotBorders.kt index 0be3874b5..7c3fc26a5 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/GardenPlotBorders.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/GardenPlotBorders.kt @@ -46,7 +46,7 @@ class GardenPlotBorders { val entity = Minecraft.getMinecraft().renderViewEntity - // Lowest point in garden + // Lowest point in the garden val minHeight = 66 val maxHeight = 256 diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestFinder.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestFinder.kt index df056bfc9..1e879f938 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestFinder.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestFinder.kt @@ -73,7 +73,7 @@ class PestFinder { return@buildList } - add(Renderable.string("§eTotal pests on garden: §c${totalAmount()}§7/§c8")) + add(Renderable.string("§eTotal pests in garden: §c${totalAmount()}§7/§c8")) for (plot in GardenPlotAPI.plots) { val pests = plot.pests @@ -105,7 +105,7 @@ class PestFinder { @SubscribeEvent fun onChat(event: LorenzChatEvent) { if (!isEnabled()) return - if (event.message == "§cThere are not any Pests on your Garden right now! Keep farming!") { + if (event.message == "§cThere are no pests in your Garden right now! Keep farming!") { GardenPlotAPI.plots.forEach { it.pests = 0 } @@ -117,7 +117,7 @@ class PestFinder { fun onDamageIndicatorDeath(event: DamageIndicatorDeathEvent) { if (!isEnabled()) return - // Check if an unknown damage indiactor mob dies in garden + // Check if an unknown damage indiactor mob dies in the garden val type = event.data.bossType if (!PestType.entries.any { it.damageIndicatorBoss == type }) return |