From c6d0f8d35e068987f5f37ecf24b4073007f20e09 Mon Sep 17 00:00:00 2001 From: Captain277 Date: Thu, 11 Aug 2022 05:58:30 -0700 Subject: [PATCH] Fixes Weather Timers (#4348) --- code/modules/planet/lavaland.dm | 2 +- maps/nsv_triumph/lavaland.dm | 4 ++-- maps/rift/lavaland.dm | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/code/modules/planet/lavaland.dm b/code/modules/planet/lavaland.dm index 0b817faf170..25da9fe49e1 100644 --- a/code/modules/planet/lavaland.dm +++ b/code/modules/planet/lavaland.dm @@ -158,7 +158,7 @@ var/datum/planet/lavaland/planet_lavaland = null flight_failure_modifier = 50 sky_visible = FALSE timer_low_bound = 1 // How long this weather must run before it tries to change, in minutes - timer_high_bound = 1 // How long this weather can run before it tries to change, in minutes + timer_high_bound = 2 // How long this weather can run before it tries to change, in minutes transition_chances = list( WEATHER_ASH_STORM = 5, WEATHER_CLEAR = 95 diff --git a/maps/nsv_triumph/lavaland.dm b/maps/nsv_triumph/lavaland.dm index 95273c49d2c..1857a8c0ad2 100644 --- a/maps/nsv_triumph/lavaland.dm +++ b/maps/nsv_triumph/lavaland.dm @@ -157,8 +157,8 @@ var/datum/planet/lavaland/planet_lavaland = null wind_low = 3 flight_failure_modifier = 50 sky_visible = FALSE - timer_low_bound = 2 // How long this weather must run before it tries to change, in minutes - timer_high_bound = 10 // How long this weather can run before it tries to change, in minutes + timer_low_bound = 1 // How long this weather must run before it tries to change, in minutes + timer_high_bound = 2 // How long this weather can run before it tries to change, in minutes transition_chances = list( WEATHER_ASH_STORM = 15, WEATHER_CLEAR = 85 diff --git a/maps/rift/lavaland.dm b/maps/rift/lavaland.dm index 95273c49d2c..1857a8c0ad2 100644 --- a/maps/rift/lavaland.dm +++ b/maps/rift/lavaland.dm @@ -157,8 +157,8 @@ var/datum/planet/lavaland/planet_lavaland = null wind_low = 3 flight_failure_modifier = 50 sky_visible = FALSE - timer_low_bound = 2 // How long this weather must run before it tries to change, in minutes - timer_high_bound = 10 // How long this weather can run before it tries to change, in minutes + timer_low_bound = 1 // How long this weather must run before it tries to change, in minutes + timer_high_bound = 2 // How long this weather can run before it tries to change, in minutes transition_chances = list( WEATHER_ASH_STORM = 15, WEATHER_CLEAR = 85