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
Copy file name to clipboardExpand all lines: common/src/main/kotlin/com/lambda/module/modules/player/PacketMine.kt
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -89,7 +89,9 @@ object PacketMine : Module(
89
89
privateval emptyReBreakDelay by setting("Empty Re-Break Delay", 0, 0..10, 1, "The delay between attempting to re-break the block if the block is currently empty", " ticks", visibility = { page ==Page.ReBreak&& reBreak.isFastAutomatic()})
90
90
privateval renderIfEmpty by setting("Render If Empty", false, "Draws the renders even if the re-break position is empty in the world", visibility = { page ==Page.ReBreak&& reBreak.isEnabled() })
91
91
92
-
privateval queueBlocks by setting("Queue Blocks", false, "Queues any blocks you click for breaking", visibility = { page ==Page.Queue }).apply { this.onValueSet { _, to ->if (!to) blockQueue.clear() } }
92
+
privateval queueBlocks by setting("Queue Blocks", false, "Queues any blocks you click for breaking", visibility = { page ==Page.Queue })
93
+
.onValueSet { _, to ->if (!to) blockQueue.clear() }
94
+
93
95
privateval reverseQueueOrder by setting("Reverse Queue Order", false, "Breaks the latest addition to the queue first", visibility = { page ==Page.Queue&& queueBlocks})
94
96
privateval queueBreakDelay by setting("Break Delay", 0, 0..5, 1, "The delay after breaking a block to break the next queue block", " ticks", visibility = { page ==Page.Queue&& queueBlocks })
0 commit comments