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"},