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