diff --git a/code/__HELPERS/game.dm b/code/__HELPERS/game.dm index afe155b50d2..d625dcbf8c1 100644 --- a/code/__HELPERS/game.dm +++ b/code/__HELPERS/game.dm @@ -258,6 +258,10 @@ var/pressure = environment.return_pressure() if(pressure <= LAVALAND_EQUIPMENT_EFFECT_PRESSURE) . = TRUE + //BUBBERSTATION ADDITION MOONSTATION COMPATIBILITY + else if(environment.gases[/datum/gas/water_vapor] && environment.gases[/datum/gas/water_vapor][MOLES] >= 1) + . = TRUE + //BUBBERSTATION ADDITION MOONSTATION COMPATIBILITY END. ///Find an obstruction free turf that's within the range of the center. Can also condition on if it is of a certain area type. /proc/find_obstruction_free_location(range, atom/center, area/specific_area)