diff options
| author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-04-20 23:12:55 +0200 |
|---|---|---|
| committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-04-20 23:12:55 +0200 |
| commit | ef3db29657fb484e22d1e23884d6ca0e6d3f45ac (patch) | |
| tree | b66465193663fc14fcc6c095351636a18acc2fb7 | |
| parent | c49a02aec5a18d156f2dbd9de04a86a40ad6927f (diff) | |
| download | SkyHanni-ef3db29657fb484e22d1e23884d6ca0e6d3f45ac.tar.gz SkyHanni-ef3db29657fb484e22d1e23884d6ca0e6d3f45ac.tar.bz2 SkyHanni-ef3db29657fb484e22d1e23884d6ca0e6d3f45ac.zip | |
Fixed typo
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Garden.java | 2 | ||||
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/data/MayorElection.kt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java index 88db073d4..fe3905e4a 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java @@ -950,7 +950,7 @@ public class Garden { public boolean fungiCutterWarn = true; @Expose - @ConfigOption(name = "Always Finnegan", desc = "Forcefully set the Finnegan Farming Simulator perk to be active. This is useful if the auto major detection fails.") + @ConfigOption(name = "Always Finnegan", desc = "Forcefully set the Finnegan Farming Simulator perk to be active. This is useful if the auto mayor detection fails.") @ConfigEditorBoolean public boolean forcefullyEnabledAlwaysFinnegan = false; diff --git a/src/main/java/at/hannibal2/skyhanni/data/MayorElection.kt b/src/main/java/at/hannibal2/skyhanni/data/MayorElection.kt index 04da1e777..ddd208db1 100644 --- a/src/main/java/at/hannibal2/skyhanni/data/MayorElection.kt +++ b/src/main/java/at/hannibal2/skyhanni/data/MayorElection.kt @@ -73,7 +73,7 @@ class MayorElection { val month = 3 // Late Spring val nextMayorTime = SkyBlockTime(currentYear, month, day = 27).toMillis() - // Is it still the major from old sb year? + // Is it still the mayor from old sb year? if (nextMayorTime > System.currentTimeMillis()) { currentYear-- } |
