From 2e4c40c33ff1850e90d0c42141a833b97dfad5fb Mon Sep 17 00:00:00 2001 From: Bond <58570888+TheBonded@users.noreply.github.com> Date: Mon, 25 Apr 2022 15:18:31 -0600 Subject: [PATCH] Makes lavaland air pressure always high enough for wings to work (#66068) * Wings require 31 or higher to work * revert and then ill do the other thing * This is going to get undone by #66075 and have to be readded pain * does that thing I said I would do * Kylerace Commit Co-authored-by: Kylerace * Kylerace "Kylerace Commit" Fix Commit Co-authored-by: Kylerace Co-authored-by: Kylerace --- code/modules/surgery/organs/external/wings.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/surgery/organs/external/wings.dm b/code/modules/surgery/organs/external/wings.dm index c81ae060569..bca39659054 100644 --- a/code/modules/surgery/organs/external/wings.dm +++ b/code/modules/surgery/organs/external/wings.dm @@ -78,7 +78,7 @@ return FALSE var/datum/gas_mixture/environment = location.return_air() - if(environment && !(environment.return_pressure() > 30)) + if(environment?.return_pressure() < HAZARD_LOW_PRESSURE + 10) to_chat(human, span_warning("The atmosphere is too thin for you to fly!")) return FALSE else