diff options
author | hannibal00212 <hannibal00212@users.noreply.github.com> | 2022-07-11 21:32:26 +0000 |
---|---|---|
committer | GitHub Action <actions@github.com> | 2022-07-11 21:32:26 +0000 |
commit | 03e9607f1f3f3ba66be9ea56b41fcf83bf31c678 (patch) | |
tree | 25dac75f2311588cf3118a319fd8996358d2dc5b | |
parent | 05c518b2e583e337ad0b2039cd142e6ab9bd152e (diff) | |
download | skyhanni-03e9607f1f3f3ba66be9ea56b41fcf83bf31c678.tar.gz skyhanni-03e9607f1f3f3ba66be9ea56b41fcf83bf31c678.tar.bz2 skyhanni-03e9607f1f3f3ba66be9ea56b41fcf83bf31c678.zip |
Prettified Code!
-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 25c36d310..5c184a7f3 100644 --- a/src/main/java/at/lorenz/mod/config/Features.java +++ b/src/main/java/at/lorenz/mod/config/Features.java @@ -13,9 +13,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) { |