From d7a10c41b5563e14779eae3733783ca64f129ee4 Mon Sep 17 00:00:00 2001 From: noil Date: Fri, 8 Jan 2021 14:33:02 -0500 Subject: [PATCH] NewChunks: Default mode set to plane --- .../rigamortis/seppuku/impl/module/render/NewChunksModule.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/me/rigamortis/seppuku/impl/module/render/NewChunksModule.java b/src/main/java/me/rigamortis/seppuku/impl/module/render/NewChunksModule.java index 0374d680..049daf08 100644 --- a/src/main/java/me/rigamortis/seppuku/impl/module/render/NewChunksModule.java +++ b/src/main/java/me/rigamortis/seppuku/impl/module/render/NewChunksModule.java @@ -25,7 +25,7 @@ */ public final class NewChunksModule extends Module { - public final Value mode = new Value("Mode", new String[]{"M", "type", "t"}, "Select a mode to use to draw the chunk visual.", Mode.BOX); + public final Value mode = new Value("Mode", new String[]{"M", "type", "t"}, "Select a mode to use to draw the chunk visual.", Mode.PLANE); public final Value color = new Value("Color", new String[]{"color", "c"}, "Change the color of the chunk visual.", new Color(255, 255, 255)); public final Value alpha = new Value("Alpha", new String[]{"Alp", "Opacity", "a", "o"}, "Edit the alpha of the chunk visual.", 127, 1, 255, 1); public final Value width = new Value("Width", new String[]{"W", "size", "s"}, "Edit the width chunk visual.", 1.5f, 0.1f, 5.0f, 0.1f);