Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions code/modules/bodytype/_bodytype.dm
Original file line number Diff line number Diff line change
Expand Up @@ -668,6 +668,8 @@ var/global/list/bodytypes_by_category = list()
var/list/organ_data = has_limbs[limb_type]
var/limb_path = organ_data["path"]
var/obj/item/organ/external/E = new limb_path(H, null, supplied_data) //explicitly specify the dna and bodytype
E.skin_colour = supplied_data.skin_color //match skin colors
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should probably be done in this proc:

/obj/item/organ/external/copy_from_mob_snapshot(var/datum/mob_snapshot/supplied_appearance)

Also should probably go to stable as it's a fix.

E.skin_tone = supplied_data.skin_tone
H.add_organ(E, GET_EXTERNAL_ORGAN(H, E.parent_organ), FALSE, FALSE, skip_health_update = TRUE)

//Create missing internal organs
Expand Down
Loading