Skip to content

Commit 66619c4

Browse files
committed
Don't allow baritone to break blocks
1 parent 158477b commit 66619c4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

‎src/main/kotlin/trombone/BaritoneHelper.kt‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ object BaritoneHelper {
1212
baritoneSettingAllowPlace = BaritoneUtils.settings?.allowPlace?.value ?: true
1313
baritoneSettingAllowBreak = BaritoneUtils.settings?.allowBreak?.value ?: true
1414
BaritoneUtils.settings?.allowPlace?.value = false
15-
// BaritoneUtils.settings?.allowBreak?.value = false
15+
BaritoneUtils.settings?.allowBreak?.value = false
1616

1717
if (!goalRender) {
1818
baritoneSettingRenderGoal = BaritoneUtils.settings?.renderGoal?.value ?: true
@@ -22,7 +22,7 @@ object BaritoneHelper {
2222

2323
fun resetBaritone() {
2424
BaritoneUtils.settings?.allowPlace?.value = baritoneSettingAllowPlace
25-
// BaritoneUtils.settings?.allowBreak?.value = baritoneSettingAllowBreak
25+
BaritoneUtils.settings?.allowBreak?.value = baritoneSettingAllowBreak
2626
BaritoneUtils.settings?.renderGoal?.value = baritoneSettingRenderGoal
2727
}
2828
}

0 commit comments

Comments
 (0)