organs no longer gain germs while in a changeling egg/headslug (#21239)

* organs no longer gain germs while in a changeling egg/headslug

* sneaky clarification improvement
This commit is contained in:
GDN
2023-06-12 20:20:38 -05:00
committed by GitHub
parent 245c835380
commit f51cfd3ed1
3 changed files with 5 additions and 1 deletions
+3
View File
@@ -127,6 +127,9 @@
if(istype(loc,/obj/item/mmi))
germ_level = max(0, germ_level - 1) // So a brain can slowly recover from being left out of an MMI
return TRUE
if(istype(loc, /mob/living/simple_animal/hostile/headslug) || istype(loc, /obj/item/organ/internal/body_egg/changeling_egg))
germ_level = 0 // weird stuff might happen, best to be safe
return TRUE
if(is_found_within(/obj/structure/closet/crate/freezer))
return TRUE
if(is_found_within(/obj/machinery/clonepod))