File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed
Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -64,6 +64,7 @@ Template for new versions:
6464
6565## Misc Improvements
6666- `strangemood`: add ability to choose Stone Cutting and Stone Carving as the mood skill
67+ - `suspendmanager`: add more specific messages for submerged jobsites and those managed by `buildingplan`
6768
6869## Documentation
6970- Added example code for creating plugin RPC endpoints that can be used to extend the DFHack API
Original file line number Diff line number Diff line change @@ -87,14 +87,18 @@ inline bool isExternalReason(Reason reason) {
8787
8888static string reasonToString (Reason reason) {
8989 switch (reason) {
90- case Reason::DEADEND:
91- return " Blocks another build job" ;
90+ case Reason::UNDER_WATER:
91+ return " Jobsite is submerged" ;
92+ case Reason::BUILDINGPLAN:
93+ return " Managed by buildingplan" ;
9294 case Reason::RISK_BLOCKING:
9395 return " May block another build job" ;
94- case Reason::UNSUPPORTED:
95- return " Would collapse immediately" ;
9696 case Reason::ERASE_DESIGNATION:
9797 return " Waiting for carve/smooth/engrave" ;
98+ case Reason::DEADEND:
99+ return " Blocks another build job" ;
100+ case Reason::UNSUPPORTED:
101+ return " Would collapse immediately" ;
98102 case Reason::ITEM_IN_JOB:
99103 return " Blocked by an unmovable item" ;
100104 default :
You can’t perform that action at this time.
0 commit comments