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 | 4b3f01bdfa771cb5b446888485f007d9178b6a7f (patch) | |
tree | 09db0bdfda19e7928a3a5f83ee1ae572d9ddb91b | |
parent | d6e6122b6758ea6c904aaf4dff36fda178e23399 (diff) | |
download | skyhanni-4b3f01bdfa771cb5b446888485f007d9178b6a7f.tar.gz skyhanni-4b3f01bdfa771cb5b446888485f007d9178b6a7f.tar.bz2 skyhanni-4b3f01bdfa771cb5b446888485f007d9178b6a7f.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; |