Skip to content

Commit 45e56ba

Browse files
authored
Merge pull request #8661 from Atermonera/slower_wind
Slows down wind speeds
2 parents 022af5a + 96cd639 commit 45e56ba

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

code/modules/planet/sif.dm

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ var/global/datum/planet/sif/planet_sif = null
206206
icon_state = "snowfall_med"
207207
temp_high = T0C // 0c
208208
temp_low = 243.15 // -30c
209-
wind_high = 2
209+
wind_high = 1
210210
wind_low = 0
211211
light_modifier = 0.5
212212
flight_failure_modifier = 5
@@ -242,7 +242,7 @@ var/global/datum/planet/sif/planet_sif = null
242242
icon_state = "snowfall_heavy"
243243
temp_high = 243.15 // -30c
244244
temp_low = 233.15 // -40c
245-
wind_high = 4
245+
wind_high = 3
246246
wind_low = 2
247247
light_modifier = 0.3
248248
flight_failure_modifier = 10
@@ -276,7 +276,7 @@ var/global/datum/planet/sif/planet_sif = null
276276
name = "rain"
277277
icon_state = "rain"
278278
wind_high = 2
279-
wind_low = 1
279+
wind_low = 0
280280
light_modifier = 0.5
281281
effect_message = "<span class='warning'>Rain falls on you.</span>"
282282

@@ -321,8 +321,8 @@ var/global/datum/planet/sif/planet_sif = null
321321
icon_state = "storm"
322322
temp_high = 243.15 // -30c
323323
temp_low = 233.15 // -40c
324-
wind_high = 4
325-
wind_low = 2
324+
wind_high = 3
325+
wind_low = 1
326326
light_modifier = 0.3
327327
flight_failure_modifier = 10
328328
effect_message = "<span class='warning'>Rain falls on you, drenching you in water.</span>"
@@ -498,8 +498,8 @@ var/global/datum/planet/sif/planet_sif = null
498498
light_color = "#FF0000"
499499
temp_high = 323.15 // 50c
500500
temp_low = 313.15 // 40c
501-
wind_high = 6
502-
wind_low = 3
501+
wind_high = 3
502+
wind_low = 2
503503
flight_failure_modifier = 50
504504
transition_chances = list(
505505
WEATHER_ASH_STORM = 100

0 commit comments

Comments
 (0)