From dac84080c074811e6dc398415bd374f663067169 Mon Sep 17 00:00:00 2001 From: Kelly Martin Date: Sat, 7 Apr 2012 20:26:56 -0500 Subject: [PATCH] Exclude grazing units from autonestbox to avoid starving da poor boids --- plugins/zone.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/zone.cpp b/plugins/zone.cpp index 61ed2007c..c66ec6b53 100644 --- a/plugins/zone.cpp +++ b/plugins/zone.cpp @@ -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