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/config/groups/BuildSettings.kt
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -40,6 +40,7 @@ class BuildSettings(
40
40
overrideval breakThreshold by c.setting("Break Threshold", 1.0f, 0.1f..1.0f, 0.1f, "The amount broken, between 0.0 and 1.0, a block should be considered broken") { vis() && page ==Page.BREAK }
41
41
overrideval rotateForBreak by c.setting("Rotate For Break", true, "Rotate towards block while breaking") { vis() && page ==Page.BREAK }
42
42
overrideval breakConfirmation by c.setting("Break Confirmation", false, "Wait for block break confirmation") { vis() && page ==Page.BREAK }
43
+
overrideval breakTimeout by c.setting("Break Timeout", 10, 1..30, 1, "Timeout for breaking in ticks", unit ="ticks") { vis() && page ==Page.BREAK }
0 commit comments