You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
async mode in build task, enabled by default in Printer and Nuker. AutoPortal clears the current task when disabling, and a couple VisibilityChecker fixes
Copy file name to clipboardExpand all lines: src/main/kotlin/com/lambda/module/modules/world/Nuker.kt
+32-24Lines changed: 32 additions & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -49,8 +49,10 @@ object Nuker : Module(
49
49
privateval baritoneSelection by setting("Baritone Selection", false, "Restricts nuker to your baritone selection")
50
50
privateval inverseSelection by setting("Inverse Selection", false, "Breaks blocks outside of the baritone selection and ignores blocks inside") { baritoneSelection }
51
51
privateval sneakLowersFlatten by setting("Sneak Lowers Flatten", false)
52
+
privateval async by setting("Async", true, "Allows the simulation the 50 milliseconds between ticks where nothing changes to avoid lag. This causes a 1 tick wait between starting the module, and it performing actions")
Copy file name to clipboardExpand all lines: src/main/kotlin/com/lambda/module/modules/world/Printer.kt
+26-16Lines changed: 26 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -53,31 +53,41 @@ object Printer : Module(
53
53
privateval baritoneSelection by setting("Baritone Selection", false, "Restricts block breaking and placing to your baritone selection")
54
54
privateval inverseSelection by setting("Inverse Selection", false, "Break and place blocks outside of the baritone selection and ignores blocks inside") { baritoneSelection }
55
55
privateval sneakLowersFlatten by setting("Sneak Lowers Flatten", false, "When enabled, sneaking will lower the flattening level by 1, allowing you to mine the block below you")
56
+
privateval async by setting("Async", true, "Allows the simulation the 50 milliseconds between ticks where nothing changes to avoid lag. This causes a 1 tick wait between starting the module, and it performing actions")
0 commit comments