Authoritarian gives workers more production via planet_jobs_worker_produces_mult
From 00_common_categories.txt
Code:
triggered_produces_modifier = {
key = planet_jobs_slave
trigger = {
is_pop_category = slave
}
}
triggered_produces_modifier = {
key = planet_jobs_worker
trigger = {
OR = {
is_pop_category = worker
is_pop_category = slave # Yes, slave should count towards both worker and slave
}
}
}
Code:
triggered_produces_modifier = {
key = planet_jobs_robotic
trigger = {
is_robot_pop = yes
}
}
So its possible to combine these pop categories, its specifically done in the case of worker+slave, but its not specifically done in the case of robots.
My take is that its working as intended.