diff --git a/code/modules/mob/living/carbon/breathe.dm b/code/modules/mob/living/carbon/breathe.dm index f2ac2335857..30e800ae590 100644 --- a/code/modules/mob/living/carbon/breathe.dm +++ b/code/modules/mob/living/carbon/breathe.dm @@ -8,7 +8,7 @@ /mob/living/carbon/proc/breathe(var/volume_needed = BREATH_VOLUME) if(species && (species.flags & NO_BREATHE)) return - if(HAS_TRAIT(src, TRAIT_PRESSURE_IMMUNITY)) + if(HAS_TRAIT(src, TRAIT_NO_BREATHE)) return volume_needed *= (species?.breath_vol_mul || 1) diff --git a/html/changelogs/diggiez - NoBreatheFix.yml b/html/changelogs/diggiez - NoBreatheFix.yml new file mode 100644 index 00000000000..c35f9a017f4 --- /dev/null +++ b/html/changelogs/diggiez - NoBreatheFix.yml @@ -0,0 +1,12 @@ +author: diggiez + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - bugfix: "The No Breathe Trait works, and Runtime's shuttle area requires power." diff --git a/maps/runtime/runtime_overmap.dm b/maps/runtime/runtime_overmap.dm index 55508eca684..07a5d09af78 100644 --- a/maps/runtime/runtime_overmap.dm +++ b/maps/runtime/runtime_overmap.dm @@ -30,6 +30,7 @@ /area/shuttle/runtime name = "While True" base_turf = /turf/simulated/floor/shuttle/black + requires_power = TRUE /datum/shuttle/autodock/overmap/runtime name = "WhileTrue"