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 5bda414 commit 3c78d8eCopy full SHA for 3c78d8e
1 file changed
plugins/suspendmanager.cpp
@@ -556,11 +556,14 @@ class SuspendManager {
556
exit = impassiblePlan;
557
}
558
559
+
560
if (!exit) {
561
// there is no exit at all
- // suspend the current construction job to leave the entire plan suspended
562
+ if (isImpassable(building)) {
563
+ // suspend the current construction job to leave the entire plan suspended
564
+ suspensions[job->id] = Reason::DEADEND;
565
+ }
566
// and stop here
- suspensions[job->id] = Reason::DEADEND;
567
return;
568
569
0 commit comments