Skip to content

Commit

Permalink
microfix
Browse files Browse the repository at this point in the history
Прок set_species убивал кукол, теперь не убивает!!!!
  • Loading branch information
TriflesChase committed Dec 27, 2024
1 parent c6d795f commit cbfb90b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/mob/living/carbon/species.dm
Original file line number Diff line number Diff line change
Expand Up @@ -216,10 +216,10 @@

/datum/species/proc/create_organs(mob/living/carbon/human/H, deleteOld = FALSE) //Handles creation of mob organs.
if(deleteOld)
for(var/obj/item/organ/external/BP in H.bodyparts)
qdel(BP)
for(var/obj/item/organ/internal/IO in H.organs)
qdel(IO)
for(var/obj/item/organ/external/BP in H.bodyparts)
qdel(BP)

create_bodyparts(H)

Expand Down

0 comments on commit cbfb90b

Please sign in to comment.