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 <kylerlumpkin1@gmail.com>

* Kylerace "Kylerace Commit" Fix Commit

Co-authored-by: Kylerace <kylerlumpkin1@gmail.com>

Co-authored-by: Kylerace <kylerlumpkin1@gmail.com>
This commit is contained in:
Bond
2022-04-25 14:18:31 -07:00
committed by GitHub
co-authored by Kylerace
parent 5326ab26c4
commit 2e4c40c33f
+1 -1
View File
@@ -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