so I’m on the latest branch, started a new game last week or so and the weather’s never changed, its always sunny
It may be because of some mods…?
Anyways, just wondering if there are any commands/ things I can do to reset whatever controls the weather so I can see the lovely weather effects
thanks
…in Philadelphia.
I just realized it might be because of a biome mod im using
im using the sacred grove biome
does anyone know how i can add weather to a biome?
thanks lol
If you’re using this mod from Steam, you’re out of luck unless you talk to the original uploader.
If you’re using this via a smod or folder, open up mod_name/data/biome/biome.json
. Inside, you might see a property that says weather
. If you do, add to it. If you do not, create it (it should be under the generation_file
property) and then add to it:
"weather": [
{
"uri": "stonehearth:weather:sunny",
"weight": 20
},
{
"uri": "stonehearth:weather:cloudy",
"weight": 20
},
{
"uri": "stonehearth:weather:rain",
"weight": 15
},
{
"uri": "stonehearth:weather:thunderstorm",
"weight": 5
},
{
"uri": "stonehearth:weather:windy",
"weight": 15
},
{
"uri": "stonehearth:weather:sandstorm",
"weight": 0
},
{
"uri": "stonehearth:weather:snow",
"weight": 2
},
{
"uri": "stonehearth:weather:blizzard",
"weight": 0
},
{
"uri": "stonehearth:weather:foggy",
"weight": 3.5
},
{
"uri": "stonehearth:weather:lucky",
"weight": 0.1
}
]
1 Like
Biome mods that didn’t update their weather yet will be sunny everyday by default.
2 Likes
found it
thanks guys <3
1 Like