From 9d7d4332f3feafdda15d0ae50d0c599f59175716 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Sun, 9 Nov 2025 23:15:02 +0000 Subject: [PATCH] increased sandstorm --- kubejs/startup_scripts/tfg/register_climates.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubejs/startup_scripts/tfg/register_climates.js b/kubejs/startup_scripts/tfg/register_climates.js index 29a2d82d9..946e6d24a 100644 --- a/kubejs/startup_scripts/tfg/register_climates.js +++ b/kubejs/startup_scripts/tfg/register_climates.js @@ -57,7 +57,7 @@ global.getMarsClimateController = function () { createWindCallback: function (builder) { var self = this; return function (level, pos, calendarTicks) { - const strength = Math.max(0, Math.sin(calendarTicks / 10000) -0.6); + const strength = Math.max(0, Math.sin(calendarTicks / 10000) - 0.4) * 1.2; const newX = Math.cos(calendarTicks / 2400) * strength; const newZ = Math.sin(calendarTicks / 2400) * strength;