Basically I want to have control over the temperatures biomes have, rather than allowing the game to set them itself. Is there any way I can do this?
The little I've looked at it, I think all you can tweak are the weather definitions under WeatherDefs:
...
<temperatureRange>
<min>0</min>
<max>999</max>
</temperatureRange>
Afaict any behaviour on top of that is hardcoded.
Quote from: unifex on January 04, 2015, 06:35:01 PM
The little I've looked at it, I think all you can tweak are the weather definitions under WeatherDefs:
...
<temperatureRange>
<min>0</min>
<max>999</max>
</temperatureRange>
Afaict any behaviour on top of that is hardcoded.
That's conditional temperature requirement of each weather event. For example, from the quote, this kind of weather will occur when outside temperature is between 0 and 999.
Ah OK thanks.