From 5f9fe871b380a682e1e6b4f5a3c4ae65850ccabc Mon Sep 17 00:00:00 2001 From: Chris Dombroski Date: Tue, 27 Jan 2015 20:39:55 -0500 Subject: [PATCH] Add isGelded() to the priority butcher checks Fixes #484 --- plugins/zone.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/zone.cpp b/plugins/zone.cpp index c0857121f..1da7b0c0b 100644 --- a/plugins/zone.cpp +++ b/plugins/zone.cpp @@ -3498,7 +3498,8 @@ command_result autoButcher( color_ostream &out, bool verbose = false ) || isAvailableForAdoption(unit) || unit->name.has_name ) w->PushProtectedUnit(unit); - else if (isGay(unit)) + else if ( isGay(unit) + || isGelded(unit)) w->PushPriorityUnit(unit); else w->PushUnit(unit);