diff options
author | hannibal2 <24389977+hannibal002@users.noreply.github.com> | 2024-02-20 19:14:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-20 19:14:13 +0100 |
commit | 788fa74d1743c475576e49eaf8edeeedddf1824f (patch) | |
tree | c0567e53326a40a77566581e76c7de2b0c2ef041 /src/main/java/at/hannibal2/skyhanni/config | |
parent | 92a4d14deaa7a4bc9cfb5426f9b493ee78a14f56 (diff) | |
download | skyhanni-788fa74d1743c475576e49eaf8edeeedddf1824f.tar.gz skyhanni-788fa74d1743c475576e49eaf8edeeedddf1824f.tar.bz2 skyhanni-788fa74d1743c475576e49eaf8edeeedddf1824f.zip |
Deprecate LorenzUtils.sendCommandToServer. #1025
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/garden/PlotIconConfig.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/garden/PlotIconConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/garden/PlotIconConfig.java index cb47862a2..2801d2bf6 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/garden/PlotIconConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/garden/PlotIconConfig.java @@ -2,7 +2,7 @@ package at.hannibal2.skyhanni.config.features.garden; import at.hannibal2.skyhanni.config.FeatureToggle; import at.hannibal2.skyhanni.features.garden.inventory.GardenPlotIcon; -import at.hannibal2.skyhanni.utils.LorenzUtils; +import at.hannibal2.skyhanni.utils.ChatUtils; import com.google.gson.annotations.Expose; import io.github.moulberry.moulconfig.annotations.ConfigEditorBoolean; import io.github.moulberry.moulconfig.annotations.ConfigEditorButton; @@ -19,6 +19,6 @@ public class PlotIconConfig { @ConfigEditorButton(buttonText = "Reset") public Runnable hardReset = () -> { GardenPlotIcon.INSTANCE.setHardReset(true); - LorenzUtils.INSTANCE.sendCommandToServer("desk"); + ChatUtils.INSTANCE.sendCommandToServer("desk"); }; } |