diff options
| author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-25 11:53:43 +0100 |
|---|---|---|
| committer | nea <nea@nea.moe> | 2023-03-26 17:53:12 +0200 |
| commit | 4fe6ceed982cc477fc67d662f2510f9c66792876 (patch) | |
| tree | 09db0bdfda19e7928a3a5f83ee1ae572d9ddb91b | |
| parent | 015a7501b30b00703266c6ebc4b5738c7bd63379 (diff) | |
| download | SkyHanni-4fe6ceed982cc477fc67d662f2510f9c66792876.tar.gz SkyHanni-4fe6ceed982cc477fc67d662f2510f9c66792876.tar.bz2 SkyHanni-4fe6ceed982cc477fc67d662f2510f9c66792876.zip | |
typo fix
3 files changed, 2 insertions, 5 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java index 3b2100afc..f3909ebce 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java @@ -52,7 +52,6 @@ import at.hannibal2.skyhanni.test.LorenzTest; import at.hannibal2.skyhanni.test.PacketTest; import at.hannibal2.skyhanni.utils.MinecraftConsoleFilter; import at.hannibal2.skyhanni.utils.TabListData; -import io.github.moulberry.moulconfig.processor.MoulConfigProcessor; import kotlin.coroutines.EmptyCoroutineContext; import kotlinx.coroutines.*; import net.minecraft.client.Minecraft; diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/GUI.java b/src/main/java/at/hannibal2/skyhanni/config/features/GUI.java index d6347a830..eba1feea8 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/GUI.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/GUI.java @@ -16,9 +16,7 @@ public class GUI { @ConfigEditorButton( buttonText = "Edit" ) - public Runnable positions = () -> { - GuiEditManager.openGuiEditor(); - }; + public Runnable positions = GuiEditManager::openGuiEditor; @Expose @ConfigOption( 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 d0e322511..26734ef00 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java @@ -512,7 +512,7 @@ public class Garden { @Expose @ConfigOption( name = "Always On", - desc = "Show the money/hour Display always while on the ") + desc = "Show the money/hour Display always while on the garden.") @ConfigEditorBoolean @ConfigAccordionId(id = 13) public boolean moneyPerHourAlwaysOn = false; |
