From e3c13fc555d42f30de6f6e5cf0285514e3c743d4 Mon Sep 17 00:00:00 2001 From: lethosor Date: Tue, 2 Dec 2014 17:30:16 -0500 Subject: [PATCH] Add gelding to autolabor and manipulator --- plugins/autolabor.cpp | 6 ++++-- plugins/manipulator.cpp | 1 + 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/plugins/autolabor.cpp b/plugins/autolabor.cpp index ad7992038..005173e09 100644 --- a/plugins/autolabor.cpp +++ b/plugins/autolabor.cpp @@ -361,7 +361,8 @@ static const dwarf_state dwarf_states[] = { BUSY /* CarveTrack */, BUSY /* PushTrackVehicle */, BUSY /* PlaceTrackVehicle */, - BUSY /* StoreItemInVehicle */ + BUSY /* StoreItemInVehicle */, + BUSY /* GeldAnimal */ }; struct labor_info @@ -473,7 +474,8 @@ static const struct labor_default default_labor_infos[] = { /* HAUL_TRADE */ {HAULERS, false, 1, 200, 0}, /* PULL_LEVER */ {HAULERS, false, 1, 200, 0}, /* REMOVE_CONSTRUCTION */ {HAULERS, false, 1, 200, 0}, - /* HAUL_WATER */ {HAULERS, false, 1, 200, 0} + /* HAUL_WATER */ {HAULERS, false, 1, 200, 0}, + /* GELD */ {AUTOMATIC, false, 1, 200, 0} }; static const int responsibility_penalties[] = { diff --git a/plugins/manipulator.cpp b/plugins/manipulator.cpp index 3a39d115b..93459e732 100644 --- a/plugins/manipulator.cpp +++ b/plugins/manipulator.cpp @@ -141,6 +141,7 @@ const SkillColumn columns[] = { {5, 6, profession::COOK, unit_labor::COOK, job_skill::COOK, "Co"}, {5, 6, profession::PRESSER, unit_labor::PRESSING, job_skill::PRESSING, "Pr"}, {5, 6, profession::BEEKEEPER, unit_labor::BEEKEEPING, job_skill::BEEKEEPING, "Be"}, + {5, 6, profession::GELDER, unit_labor::GELD, job_skill::GELD, "Ge"}, // Fishing/Related {6, 1, profession::FISHERMAN, unit_labor::FISH, job_skill::FISH, "Fi"}, {6, 1, profession::FISH_CLEANER, unit_labor::CLEAN_FISH, job_skill::PROCESSFISH, "Cl"},