diff options
author | hannibal00212 <hannibal00212@users.noreply.github.com> | 2022-07-08 21:15:14 +0000 |
---|---|---|
committer | GitHub Action <actions@github.com> | 2022-07-08 21:15:14 +0000 |
commit | 47ef47238b748d24329b27a8ce015e6c85216436 (patch) | |
tree | a523135933ef2d729246a6a139569223876382d8 /src/main/java/at/lorenz | |
parent | 5ac4f2123f2750a6a8d8a6ad1bb9c6e0177c270e (diff) | |
download | skyhanni-47ef47238b748d24329b27a8ce015e6c85216436.tar.gz skyhanni-47ef47238b748d24329b27a8ce015e6c85216436.tar.bz2 skyhanni-47ef47238b748d24329b27a8ce015e6c85216436.zip |
Prettified Code!
Diffstat (limited to 'src/main/java/at/lorenz')
-rw-r--r-- | src/main/java/at/lorenz/mod/config/Features.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/main/java/at/lorenz/mod/config/Features.java b/src/main/java/at/lorenz/mod/config/Features.java index 97f9be3d8..f03103fd6 100644 --- a/src/main/java/at/lorenz/mod/config/Features.java +++ b/src/main/java/at/lorenz/mod/config/Features.java @@ -16,9 +16,7 @@ import net.minecraft.client.Minecraft; public class Features { private void editOverlay(String activeConfig, int width, int height, Position position) { - Minecraft.getMinecraft().displayGuiScreen(new GuiPositionEditor(position, width, height, () -> { - }, () -> { - }, () -> LorenzMod.screenToOpen = new GuiScreenElementWrapper(new SBHConfigEditor(LorenzMod.feature, activeConfig)))); + Minecraft.getMinecraft().displayGuiScreen(new GuiPositionEditor(position, width, height, () -> {}, () -> {}, () -> LorenzMod.screenToOpen = new GuiScreenElementWrapper(new SBHConfigEditor(LorenzMod.feature, activeConfig)))); } public void executeRunnable(String runnableId) { |