Replaces internal_organs with organs (#73918)

Internal_organs now also contains external organs, so the naming was
incorrect

Requested by @tralezab in #72734

Also removed some now incorrect 'as anythings' that assumed everything
in the internal_organs list was an internal_organ (which is a lie since
I put extorgans in there which means runtimes and unintentionakl
behaviour

🆑
fix: fixes deadly harvesting just taking harmless extorgans
code: renames internal_organs to organs now that it can also contain
external_organs
/🆑
This commit is contained in:
Time-Green
2023-03-14 18:33:35 -06:00
committed by GitHub
parent d50b79c3e7
commit 9843c23657
52 changed files with 110 additions and 110 deletions
+1 -1
View File
@@ -577,7 +577,7 @@ INITIALIZE_IMMEDIATE(/obj/effect/mapping_helpers/no_lava)
body_bag.forceMove(morgue_tray)
new_human.death() //here lies the mans, rip in pepperoni.
for (var/part in new_human.internal_organs) //randomly remove organs from each body, set those we keep to be in stasis
for (var/part in new_human.organs) //randomly remove organs from each body, set those we keep to be in stasis
if (prob(40))
qdel(part)
else