From 2d6ada0237e43cd530dc840fdb54fb3c4721b8ac Mon Sep 17 00:00:00 2001 From: Neerti Date: Tue, 9 Apr 2019 17:49:24 -0400 Subject: [PATCH] Tweaks comment. --- code/modules/mob/living/carbon/human/human_movement.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human_movement.dm b/code/modules/mob/living/carbon/human/human_movement.dm index 2790fa8eee..6d1bd819bd 100644 --- a/code/modules/mob/living/carbon/human/human_movement.dm +++ b/code/modules/mob/living/carbon/human/human_movement.dm @@ -147,7 +147,7 @@ if(WH && WH.wind_speed) // Is there any wind? // With the wind. if(direct & WH.wind_dir) - . = max(. - WH.wind_speed, -1) // Wind speedup is capped at roughly taj speed. + . = max(. - WH.wind_speed, -1) // Wind speedup is capped to prevent supersonic speeds from a storm. // Against it. else if(direct & reverse_dir[WH.wind_dir]) . += WH.wind_speed