We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c37b72e commit 770ec32Copy full SHA for 770ec32
common/src/main/kotlin/com/lambda/task/tasks/BuildTask.kt
@@ -113,7 +113,7 @@ class BuildTask @Ta5kBuilder constructor(
113
.plus(pendingInteractions.toList())
114
.toMutableList()
115
116
- if (bestPos != null) {
+ if (bestPos != null && build.pathing) {
117
drawables.add(bestPos)
118
}
119
TaskFlowModule.drawables = drawables
@@ -152,7 +152,7 @@ class BuildTask @Ta5kBuilder constructor(
152
153
is BuildResult.Contextual -> {
154
bestPos?.let {
155
- BaritoneUtils.setGoalAndPath(GoalNear(it.pos, 1))
+ if (build.pathing) BaritoneUtils.setGoalAndPath(GoalNear(it.pos, 1))
156
157
158
if (atMaxPendingInteractions) return@listen
0 commit comments