1
0
mirror of https://github.com/kami-blue/client synced 2024-12-21 22:50:13 +00:00

autodisable default

This commit is contained in:
Bella Who 2020-01-21 21:54:07 -05:00 committed by GitHub
parent 57deccf748
commit e5a56232f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,7 +33,7 @@ import net.minecraft.util.math.Vec3d;
*/
@Module.Info(name = "Surround", category = Module.Category.COMBAT, description = "Surrounds you with obsidian")
public class Surround extends Module {
private Setting<Boolean> autoDisable = register(Settings.b("Auto Disable", false));
private Setting<Boolean> autoDisable = register(Settings.b("Auto Disable", true));
private Setting<Boolean> spoofRotations = register(Settings.b("Spoof Rotations", true));
private Setting<Boolean> spoofHotbar = register(Settings.b("Spoof Hotbar", true));
private Setting<Double> blockPerTick = register(Settings.doubleBuilder("Blocks per Tick").withMinimum(1.0).withValue(4.0).withMaximum(10.0).build());
@ -321,4 +321,4 @@ public class Surround extends Module {
}
}
}