Skip to content

Commit 0ff69be

Browse files
committed
fast break is so back
1 parent e459919 commit 0ff69be

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

src/main/kotlin/com/lambda/config/groups/BreakSettings.kt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,27 +40,27 @@ open class BreakSettings(
4040
}
4141

4242
// General
43-
override val breakMode by c.setting("Break Mode", BreakMode.Vanilla).group(baseGroup, Group.General).index()
43+
override val breakMode by c.setting("Break Mode", BreakMode.Packet).group(baseGroup, Group.General).index()
4444
override val sorter by c.setting("Break Sorter", ActionConfig.SortMode.Tool, "The order in which breaks are performed").group(baseGroup, Group.General).index()
4545
override val rebreak by c.setting("Rebreak", true, "Re-breaks blocks after they've been broken once").group(baseGroup, Group.General).index()
4646

4747
// Double break
48-
override val doubleBreak by c.setting("Double Break", false, "Allows breaking two blocks at once").group(baseGroup, Group.General).index()
48+
override val doubleBreak by c.setting("Double Break", true, "Allows breaking two blocks at once").group(baseGroup, Group.General).index()
4949
override val unsafeCancels by c.setting("Unsafe Cancels", true, "Allows cancelling block breaking even if the server might continue breaking sever side, potentially causing unexpected state changes") { doubleBreak }.group(baseGroup, Group.General).index()
5050

5151
// Fixes / Delays
52-
override val breakThreshold by c.setting("Break Threshold", 1.00f, 0.1f..1.0f, 0.01f, "The break amount at which the block is considered broken").group(baseGroup, Group.General).index()
52+
override val breakThreshold by c.setting("Break Threshold", 0.70f, 0.1f..1.0f, 0.01f, "The break amount at which the block is considered broken").group(baseGroup, Group.General).index()
5353
override val fudgeFactor by c.setting("Fudge Factor", 1, 0..5, 1, "The number of ticks to add to the break time, usually to account for server lag").group(baseGroup, Group.General).index()
54-
override val serverSwapTicks by c.setting("Server Swap", 5, 0..5, 1, "The number of ticks to give the server time to recognize the player attributes on the swapped item", " tick(s)").group(baseGroup, Group.General).index()
54+
override val serverSwapTicks by c.setting("Server Swap", 0, 0..5, 1, "The number of ticks to give the server time to recognize the player attributes on the swapped item", " tick(s)").group(baseGroup, Group.General).index()
5555

5656
// override val desyncFix by c.setting("Desync Fix", false, "Predicts if the players breaking will be slowed next tick as block break packets are processed using the players next position") { vis() && page == Page.General }
57-
override val breakDelay by c.setting("Break Delay", 5, 0..5, 1, "The delay between breaking blocks", " tick(s)").group(baseGroup, Group.General).index()
57+
override val breakDelay by c.setting("Break Delay", 0, 0..5, 1, "The delay between breaking blocks", " tick(s)").group(baseGroup, Group.General).index()
5858

5959
// Timing
6060
override val tickStageMask by c.setting("Break Stage Mask", setOf(TickEvent.Input.Post), ALL_STAGES.toSet(), description = "The sub-tick timing at which break actions can be performed").group(baseGroup, Group.General).index()
6161

6262
// Swap
63-
override val swapMode by c.setting("Break Swap Mode", BreakConfig.SwapMode.StartAndEnd, "Decides when to swap to the best suited tool when breaking a block").group(baseGroup, Group.General).index()
63+
override val swapMode by c.setting("Break Swap Mode", BreakConfig.SwapMode.End, "Decides when to swap to the best suited tool when breaking a block").group(baseGroup, Group.General).index()
6464

6565
// Swing
6666
override val swing by c.setting("Swing Mode", SwingMode.Constant, "The times at which to swing the players hand").group(baseGroup, Group.General).index()

src/main/kotlin/com/lambda/module/modules/player/PacketMine.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ object PacketMine : Module(
120120
) { defaultValue(false) }
121121
::swing.edit { defaultValue(BreakConfig.SwingMode.Start) }
122122
}
123+
hotbarConfig::keepTicks.edit { defaultValue(0) }
123124
}
124125
}
125126

0 commit comments

Comments
 (0)