diff --git a/code/modules/mob/living/life.dm b/code/modules/mob/living/life.dm index 92a1cc1603..e35cf26190 100644 --- a/code/modules/mob/living/life.dm +++ b/code/modules/mob/living/life.dm @@ -139,7 +139,7 @@ ExtinguishMob() return var/datum/gas_mixture/G = loc.return_air() // Check if we're standing in an oxygenless environment - if(G.get_moles(/datum/gas/oxygen, 1)) + if(!G.get_moles(/datum/gas/oxygen, 1)) ExtinguishMob() //If there's no oxygen in the tile we're on, put out the fire return var/turf/location = get_turf(src) diff --git a/html/changelog.html b/html/changelog.html index 6cc7cb07d4..fb34a05389 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -60,6 +60,7 @@