From 4fe53af98e22ed2f856da0921358ccbfd9b8aea0 Mon Sep 17 00:00:00 2001 From: noil Date: Sat, 5 Dec 2020 23:59:32 -0500 Subject: [PATCH] Turns NoCrystal's new extended mode off by default --- .../rigamortis/seppuku/impl/module/combat/NoCrystalModule.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/me/rigamortis/seppuku/impl/module/combat/NoCrystalModule.java b/src/main/java/me/rigamortis/seppuku/impl/module/combat/NoCrystalModule.java index 635c8a3..bec1102 100644 --- a/src/main/java/me/rigamortis/seppuku/impl/module/combat/NoCrystalModule.java +++ b/src/main/java/me/rigamortis/seppuku/impl/module/combat/NoCrystalModule.java @@ -43,7 +43,7 @@ public final class NoCrystalModule extends Module { public final Value visible = new Value("Visible", new String[]{"Visible", "v"}, "When disabled, you will not see swing animations or sounds.", true); public final Value rotate = new Value("Rotate", new String[]{"rotation", "r", "rotate"}, "Rotate to place blocks.", true); public final Value center = new Value("Center", new String[]{"centered", "c", "cen"}, "Centers the player on their current block when beginning to place.", true); - public final Value extended = new Value("Extended", new String[]{"extend", "e", "big"}, "Enlarges the size of the fortress.", true); + public final Value extended = new Value("Extended", new String[]{"extend", "e", "big"}, "Enlarges the size of the fortress.", false); public final Value disable = new Value("Disable", new String[]{"dis", "autodisable", "autodis", "d"}, "Automatically disable after obsidian is placed.", false); public final Value sneak = new Value("PlaceOnSneak", new String[]{"sneak", "s", "pos", "sneakPlace"}, "When true, NoCrystal will only place while the player is sneaking.", false); public final Value placeDelay = new Value("Delay", new String[]{"PlaceDelay", "PlaceDel"}, "The delay between obsidian blocks being placed.", 100.0f, 0.0f, 1000.0f, 1.0f);