Exclude grazing units from autonestbox to avoid starving da poor boids

develop
Kelly Martin 2012-04-07 20:26:56 -05:00
parent c89416a3f8
commit dac84080c0
1 changed files with 1 additions and 0 deletions

@ -963,6 +963,7 @@ bool isFreeEgglayer(df::unit * unit)
&& isOwnCiv(unit)
&& isEggLayer(unit)
&& !isAssigned(unit)
&& !isGrazer(unit) // exclude grazing birds because they're messy
)
return true;
else