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: src/main/kotlin/com/lambda/config/groups/BreakSettings.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@ open class BreakSettings(
57
57
overrideval breakDelay by c.setting("Break Delay", 0, 0..6, 1, "The delay between breaking blocks", " tick(s)").group(baseGroup, Group.General).index()
58
58
59
59
// Timing
60
-
overrideval tickStageMask by c.setting("Break Stage Mask", ALL_STAGES.toSet(), setOf(TickEvent.Input.Post), description ="The sub-tick timing at which break actions can be performed").group(baseGroup, Group.General).index()
60
+
overrideval 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()
61
61
62
62
// Swap
63
63
overrideval swapMode by c.setting("Swap Mode", BreakConfig.SwapMode.End, "Decides when to swap to the best suited tool when breaking a block").group(baseGroup, Group.General).index()
overrideval eatOnHunger by c.setting("Eat On Hunger", true, "Whether to eat when hungry").group(baseGroup).index()
36
35
overrideval minFoodLevel by c.setting("Minimum Food Level", 6, 0..20, 1, "The minimum food level to eat food", " food level") { eatOnHunger }.group(baseGroup).index()
37
36
overrideval saturated by c.setting("Saturated", EatConfig.Saturation.EatSmart, "When to stop eating") { eatOnHunger }.group(baseGroup).index()
38
-
overrideval nutritiousFood by c.setting("Nutritious Food", nutritiousFoodDefaults, description ="Items that are be considered nutritious") { eatOnHunger }.group(baseGroup).index()
37
+
overrideval nutritiousFood by c.setting("Nutritious Food", nutritiousFoodDefaults, nutritiousFoodDefaults,"Items that are be considered nutritious") { eatOnHunger }.group(baseGroup).index()
39
38
overrideval selectionPriority by c.setting("Selection Priority", EatConfig.SelectionPriority.MostNutritious, "The priority for selecting food items") { eatOnHunger }.group(baseGroup).index()
40
39
overrideval eatOnFire by c.setting("Eat On Fire", true, "Whether to eat when on fire").group(baseGroup).index()
41
-
overrideval resistanceFood by c.setting("Resistance Food", resistanceFoodDefaults, description ="Items that give Fire Resistance") { eatOnFire }.group(baseGroup).index()
40
+
overrideval resistanceFood by c.setting("Resistance Food", resistanceFoodDefaults, resistanceFoodDefaults,"Items that give Fire Resistance") { eatOnFire }.group(baseGroup).index()
42
41
overrideval eatOnDamage by c.setting("Eat On Damage", true, "Whether to eat when damaged").group(baseGroup).index()
43
42
overrideval minDamage by c.setting("Minimum Damage", 10, 0..20, 1, "The minimum damage threshold to trigger eating") { eatOnDamage }.group(baseGroup).index()
44
-
overrideval regenerationFood by c.setting("Regeneration Food", regenerationFoodDefaults, description ="Items that give Regeneration") { eatOnDamage }.group(baseGroup).index()
43
+
overrideval regenerationFood by c.setting("Regeneration Food", regenerationFoodDefaults, regenerationFoodDefaults,"Items that give Regeneration") { eatOnDamage }.group(baseGroup).index()
45
44
overrideval ignoreBadFood by c.setting("Ignore Bad Food", true, "Whether to eat when the food is bad").group(baseGroup).index()
46
-
overrideval badFood by c.setting("Bad Food", negativeFoodDefaults, description ="Items that are considered bad food") { ignoreBadFood }.group(baseGroup).index()
45
+
overrideval badFood by c.setting("Bad Food", negativeFoodDefaults, negativeFoodDefaults,"Items that are considered bad food") { ignoreBadFood }.group(baseGroup).index()
Copy file name to clipboardExpand all lines: src/main/kotlin/com/lambda/config/groups/HotbarSettings.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -32,5 +32,5 @@ class HotbarSettings(
32
32
overrideval swapDelay by c.setting("Swap Delay", 0, 0..3, 1, "The number of ticks delay before allowing another hotbar selection swap", " ticks").group(baseGroup).index()
33
33
overrideval swapsPerTick by c.setting("Swaps Per Tick", 3, 1..10, 1, "The number of hotbar selection swaps that can take place each tick") { swapDelay <=0 }.group(baseGroup).index()
34
34
overrideval swapPause by c.setting("Swap Pause", 0, 0..20, 1, "The delay in ticks to pause actions after switching to the slot", " ticks").group(baseGroup).index()
35
-
overrideval tickStageMask by c.setting("Hotbar Stage Mask", ALL_STAGES.toSet(), setOf(TickEvent.Input.Post), description ="The sub-tick timing at which hotbar actions are performed").group(baseGroup).index()
35
+
overrideval tickStageMask by c.setting("Hotbar Stage Mask", setOf(TickEvent.Input.Post), ALL_STAGES.toSet(), description ="The sub-tick timing at which hotbar actions are performed").group(baseGroup).index()
Copy file name to clipboardExpand all lines: src/main/kotlin/com/lambda/config/groups/InteractSettings.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ class InteractSettings(
31
31
overrideval rotate by c.setting("Rotate For Interact", true, "Rotates the player to look at the block when interacting").group(baseGroup).index()
32
32
overrideval sorter by c.setting("Interact Sorter", ActionConfig.SortMode.Tool, "The order in which interactions are performed").group(baseGroup).index()
33
33
overrideval swingHand by c.setting("Swing On Interact", true, "Swings the players hand after interacting").group(baseGroup).index()
34
-
overrideval tickStageMask by c.setting("Interact Stage Mask", ALL_STAGES.toSet(), setOf(TickEvent.Input.Post), description ="The sub-tick timing at which interact actions are performed").group(baseGroup).index()
34
+
overrideval tickStageMask by c.setting("Interact Stage Mask", setOf(TickEvent.Input.Post), ALL_STAGES.toSet(), description ="The sub-tick timing at which interact actions are performed").group(baseGroup).index()
35
35
overrideval interactSwingType by c.setting("Interact Swing Type", BuildConfig.SwingType.Vanilla, "The style of swing") { swingHand }.group(baseGroup).index()
36
36
overrideval interactConfirmationMode by c.setting("Interact Confirmation Mode", InteractConfig.InteractConfirmationMode.InteractThenAwait, "The style of confirmation for interactions").group(baseGroup).index()
Copy file name to clipboardExpand all lines: src/main/kotlin/com/lambda/config/groups/PlaceSettings.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ class PlaceSettings(
34
34
overrideval airPlace by c.setting("Air Place", AirPlaceMode.None, "Allows for placing blocks without adjacent faces").group(baseGroup).index()
35
35
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") { airPlace.isEnabled }.group(baseGroup).index()
36
36
overrideval sorter by c.setting("Place Sorter", ActionConfig.SortMode.Tool, "The order in which placements are performed").group(baseGroup).index()
37
-
overrideval tickStageMask by c.setting("Place Stage Mask", ALL_STAGES.toSet(), setOf(TickEvent.Input.Post), description ="The sub-tick timing at which place actions are performed").group(baseGroup).index()
37
+
overrideval tickStageMask by c.setting("Place Stage Mask", setOf(TickEvent.Input.Post), ALL_STAGES.toSet(), description ="The sub-tick timing at which place actions are performed").group(baseGroup).index()
38
38
overrideval placeConfirmationMode by c.setting("Place Confirmation", PlaceConfirmationMode.PlaceThenAwait, "Wait for block placement confirmation").group(baseGroup).index()
39
39
overrideval maxPendingPlacements by c.setting("Max Pending Placements", 5, 0..30, 1, "The maximum amount of pending placements").group(baseGroup).index()
40
40
overrideval placementsPerTick by c.setting("Places Per Tick", 1, 1..30, 1, "Maximum instant block places per tick").group(baseGroup).index()
0 commit comments