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/BreakSettings.kt
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -32,6 +32,7 @@ class BreakSettings(
32
32
overrideval breakThreshold by c.setting("Break Threshold", 1.0f, 0.1f..1.0f, 0.02f, "The break amount at which the block is considered broken") { vis() }
33
33
overrideval doubleBreak by c.setting("Double Break", false, "Allows breaking two blocks at once") { vis() }
34
34
overrideval breakDelay by c.setting("Break Delay", 5, 0..5, 1, "The delay between breaking blocks", " ticks") { vis() }
35
+
overrideval sequenceMode by c.setting("Break Sequence Mode", BuildConfig.InteractSequenceMode.PostMovement, "The sub-tick timing at which break actions are performed", vis)
35
36
overrideval swing by c.setting("Swing Mode", SwingMode.Constant, "The times at which to swing the players hand") { vis() }
36
37
overrideval swingType by c.setting("Break Swing Type", BuildConfig.SwingType.Vanilla, "The style of swing") { vis() && swing !=SwingMode.None }
37
38
overrideval sounds by c.setting("Break Sounds", true, "Plays the breaking sounds") { vis() }
Copy file name to clipboardExpand all lines: common/src/main/kotlin/com/lambda/config/groups/PlaceSettings.kt
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,7 @@ class PlaceSettings(
29
29
overrideval rotateForPlace by c.setting("Rotate For Place", true, "Rotate towards block while placing") { vis() }
30
30
overrideval airPlace by c.setting("Air Place", AirPlaceMode.None, "Allows for placing blocks without adjacent faces") { vis() }
31
31
overrideval axisRotateSetting by c.setting("Axis Rotate", true, "Overrides the Rotate For Place setting and rotates the player on each axis to air place rotational blocks") { vis() && airPlace.isEnabled() }
32
+
overrideval sequenceMode by c.setting("Place Sequence Mode", BuildConfig.InteractSequenceMode.PostMovement, "The sub-tick timing at which break actions are performed") { vis() }
32
33
overrideval placeConfirmationMode by c.setting("Place Confirmation", PlaceConfirmationMode.PlaceThenAwait, "Wait for block placement confirmation") { vis() }
33
34
overrideval maxPendingPlacements by c.setting("Max Pending Placements", 5, 0..30, 1, "The maximum amount of pending placements") { vis() }
34
35
overrideval placementsPerTick by c.setting("Places Per Tick", 1, 1..30, 1, "Maximum instant block places per tick") { vis() }
0 commit comments