I haven't after a casual look found this already posted, so here:
The reason Gaia terraforming destroy features is because the three special 1-district gaia features all have zero weight, which apparently blocks terraforming swapping. Setting their weight to e.g. 0.01 will fix this.
The reason Gaia terraforming destroy features is because the three special 1-district gaia features all have zero weight, which apparently blocks terraforming swapping. Setting their weight to e.g. 0.01 will fix this.
Code:
If you want to fix it yourself:
Open up stellaris/common/deposits/01_planetary_deposits.txt,
go to the bottom of the file, and change this:
drop_weight = {
weight = 0 #does not occur naturally
modifier = {
factor = 0
NOT = { is_planet_class = pc_gaia }
}
}
To this:
drop_weight = {
weight = 0.01 #does not occur naturally
modifier = {
factor = 0
NOT = { is_planet_class = pc_gaia }
}
}
For the last three entries (d_buzzing_plains, d_mineral_striations and d_natural_farmland)