| 1466 | } |
| 1467 | |
| 1468 | static bool isTired(df::unit *worker) |
| 1469 | { |
| 1470 | return worker->counters2.exhaustion >= 1000 || |
| 1471 | worker->counters2.thirst_timer >= 25000 || |
| 1472 | worker->counters2.hunger_timer >= 50000 || |
| 1473 | worker->counters2.sleepiness_timer >= 57600; |
| 1474 | } |
| 1475 | |
| 1476 | static void releaseTiredWorker(EngineInfo *engine, df::job *job, df::unit *worker) |
| 1477 | { |
no outgoing calls
no test coverage detected