I've got something like the following on a planetary deposit:
(amenities are just there for easy checks)
However, it seems to me like when both triggers are met, only whichever I place first becomes actually active. Is this how it is supposed to work?
Code:
popgrowth = {
icon = "unused/d_alien_propaganda"
is_for_colonizeable = yes
category = deposit_cat_food
should_swap_deposit_on_terraforming = no
drop_weight = {
weight = 0
}
triggered_planet_modifier = {
potential = { free_housing > -3
}
planet_modifier = {
planet_carry_cap_add = 1000000
planet_amenities_add = 10
}
}
triggered_planet_modifier = {
potential = { num_pops < 10
}
planet_modifier = {
planet_immigration_pull_add = 100
planet_amenities_add = 11
}
}
}
(amenities are just there for easy checks)
However, it seems to me like when both triggers are met, only whichever I place first becomes actually active. Is this how it is supposed to work?
Last edited: