rainfall should be X axis, not Z

This commit is contained in:
Pyritie 2025-09-07 15:45:35 +01:00
parent 028f4c0cce
commit 5dc1a7b90e

View file

@ -162,7 +162,7 @@ TFCEvents.registerClimateModel(event => {
// irl mars' poles have a snowfall of 0.13mm but that's barely noticeable here.
// Use a negative rainfall to stop it snowing closer to the equator. TFC clamps negatives to zero so it's fine
return calcAverage(pos.z, 10000, 13, -25)
return calcAverage(pos.x, 10000, 13, -25)
})
builder.setAirFog((level, pos, calendarTicks) => 0)