We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents eb4ea81 + 271896f commit 5310585Copy full SHA for 5310585
2 files changed
changelog.txt
@@ -38,6 +38,7 @@ Template for new versions:
38
## Fixes
39
- `position`: support for adv mode look cursor
40
- `gui/liquids`: using the remove tool with magma selected will no longer create unexpected unpathable tiles
41
+- `idle-crafting`: do not assign crafting jobs to nobles holding meetings (avoid dangling jobs)
42
43
## Misc Improvements
44
- `hide-tutorials`: handle tutorial popups for adventure mode
idle-crafting.lua
@@ -333,6 +333,8 @@ end
333
function unitIsAvailable(unit)
334
if unit.job.current_job then
335
return false
336
+ elseif #unit.specific_refs > 0 then -- activities such as "Conduct Meeting"
337
+ return false
338
elseif #unit.social_activities > 0 then
339
340
elseif #unit.individual_drills > 0 then
0 commit comments