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);