mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-22 12:16:40 +01:00
7 lines
220 B
Plaintext
7 lines
220 B
Plaintext
/mob/Process_Spacemove(movement_dir = 0)
|
|
var/turf/T = get_turf(src)
|
|
var/datum/gas_mixture/environment = T.return_air()
|
|
if(HAS_TRAIT(src, TRAIT_FLUTTER) && (environment.return_pressure() > 30))
|
|
return TRUE
|
|
. = ..()
|