diff options
author | Luna <me@alexia.lol> | 2024-04-09 14:36:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-09 22:36:57 +1000 |
commit | ea0c346e798850c89c132fffd451015cef02e478 (patch) | |
tree | 08818a36862c4a9fba541235fc8cb70284017d91 /src | |
parent | 4f4aed641af553adb757ea4fc845d25fa1573ea6 (diff) | |
download | skyhanni-ea0c346e798850c89c132fffd451015cef02e478.tar.gz skyhanni-ea0c346e798850c89c132fffd451015cef02e478.tar.bz2 skyhanni-ea0c346e798850c89c132fffd451015cef02e478.zip |
Fix: Some typos (#1408)
Diffstat (limited to 'src')
3 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/garden/pests/PestFinderConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/garden/pests/PestFinderConfig.java index 66e28b1fb..1ec7650cd 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/garden/pests/PestFinderConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/garden/pests/PestFinderConfig.java @@ -14,7 +14,7 @@ public class PestFinderConfig { @Expose @ConfigOption( name = "Display", - desc = "Show a display with all know pest locations." + desc = "Show a display with all known pest locations." ) @ConfigEditorBoolean @FeatureToggle diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/GetFromSackConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/GetFromSackConfig.java index a0129bfd0..03990536f 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/GetFromSackConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/GetFromSackConfig.java @@ -8,7 +8,7 @@ import io.github.notenoughupdates.moulconfig.annotations.ConfigOption; public class GetFromSackConfig { @Expose - @ConfigOption(name = "Queued GfS", desc = "If §e/gfs §7or §e/getfromsacks §7is used it queues up the commands so all items are guarantied to be received.") + @ConfigOption(name = "Queued GfS", desc = "If §e/gfs §7or §e/getfromsacks §7is used it queues up the commands so all items are guaranteed to be received.") @ConfigEditorBoolean @FeatureToggle public boolean queuedGFS = true; diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestParticleWaypoint.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestParticleWaypoint.kt index 49d97276b..d4a63689b 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestParticleWaypoint.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/pests/PestParticleWaypoint.kt @@ -130,7 +130,7 @@ class PestParticleWaypoint { val waypoint = getWaypoint() ?: return - val text = if (isPointingToPest) "§aPest Guess" else "§cInfected Plot Guess" + val text = if (isPointingToPest) "§aPest Guess" else "§cInfested Plot Guess" val color = color ?: error("color is null") event.drawWaypointFilled(waypoint, color, beacon = true) |