Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Edit: Narrowed it down to this block in `bdoe_03_biomass_technician`:
```
produces = {
trigger = {
planet = {
planet_resource_compare = {
resource = food
value > 0
}
}
}
energy = 2
}
```
Maybe it's bouncing back and forth between two triggers or something
district_city: Needs origin_fear_of_the_dark updates
Mining Districts: Needs origin_subterranean updates
-----
Is it intended that this mod overwrites:
district_rw_allows
district_rw_consumer
district_rw_leisure
district_rw_mining
district_rw_organic_housing
from Gigastructural Engineering? I know you might replace them, so this might be intentional.
From Planetary Diversity, is it intended that this mod overwrites district_srw_commercial?
Thanks for your hard work.
It's district_mining_uncapped. The vanilla game has 3 triggered modifiers that I do not see in your version:
triggered_planet_modifier = {
potential = {
exists = owner
owner = { has_origin = origin_subterranean }
}
modifier = {
planet_housing_add = 1
}
}
triggered_planet_modifier = {
potential = {
exists = owner
owner = { has_origin = origin_subterranean }
}
modifier = {
planet_housing_add = 1
}
}
triggered_planet_modifier = {
potential = {
exists = owner
owner = { has_origin = origin_subterranean }
}
modifier = {
planet_max_buildings_add = 0.34
}
}
Along with these 2 triggered descriptions:
triggered_desc = {
trigger = {
exists = owner
owner = { is_gestalt = yes }
NOT = { owner = { has_origin = origin_subterranean } }
}
text = job_scrap_miner_drone_effect_desc
}
triggered_desc = {
trigger = {
exists = owner
owner = { is_regular_empire = yes }
NOT = { owner = { has_origin = origin_subterranean } }
}
text = job_scrap_miner_effect_desc
}
triggered_planet_modifier = {
potential = {
exists = owner
owner = { has_origin = origin_subterranean }
}
modifier = {
planet_housing_add = 2
planet_max_buildings_add = 0.34
}
}
And I also have those two desc parts. Perhaps it hasn't uploaded correctly?
triggered_planet_modifier = {
potential = {
exists = owner
owner = {
OR = {
is_regular_empire = yes
has_origin = origin_fear_of_the_dark
}
}
}
modifier = {
job_clerk_add = 1
}
}
Has not been added to district_city, however.
Also, your pd_comp file doesn't always overwrite because some PD files come after it, like pd_unique_districts. I think you should change the name to zz_pd_comp.
https://i.imgur.com/9mjTQG7.png
Thanks!