Fixes Weather Timers (#4348)

This commit is contained in:
Captain277
2022-08-11 05:58:30 -07:00
committed by GitHub
parent 9d6d74d9da
commit c6d0f8d35e
3 changed files with 5 additions and 5 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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