Skip to content

Commit

Permalink
Synthetic Gas
Browse files Browse the repository at this point in the history
  • Loading branch information
ghostsheet committed Jul 11, 2023
1 parent ef76cec commit 6ca831c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion code/game/objects/effects/effect_system/smoke.dm
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,8 @@

/obj/effect/particle_effect/smoke/bad/affect(mob/living/carbon/M)
..()
if (isxeno(M) || isyautja(M) || issynth(M))
return
if (M.internal != null && M.wear_mask && (M.wear_mask.flags_inventory & ALLOWINTERNALS))
return
else
Expand Down Expand Up @@ -365,7 +367,7 @@

/obj/effect/particle_effect/smoke/xeno_weak/affect(mob/living/carbon/moob) // This applies every tick someone is in the smoke
..()
if(isxeno(moob))
if(isxeno(moob) || issynth(moob))
return
if(isyautja(moob))
neuro_dose = neuro_dose*2 // Yautja get half effects
Expand Down

0 comments on commit 6ca831c

Please sign in to comment.