| 375 | } |
| 376 | |
| 377 | static bool isSupportedJob(df::job *job) |
| 378 | { |
| 379 | return job->specific_refs.empty() && |
| 380 | Job::getHolder(job) && |
| 381 | (!job->job_items.elements.empty() || |
| 382 | job->job_type == job_type::CollectClay || |
| 383 | job->job_type == job_type::CollectSand || |
| 384 | job->job_type == job_type::MilkCreature || |
| 385 | job->job_type == job_type::ShearCreature); |
| 386 | } |
| 387 | |
| 388 | static bool isOptionEnabled(unsigned flag) |
| 389 | { |
no test coverage detected