diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 3eb3f5995ef..8e9ba392fed 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -67,6 +67,7 @@ sync_dna_traits(FALSE) // Traitgenes Sync traits to genetics if needed sync_organ_dna() initialize_vessel() + regenerate_icons() AddComponent(/datum/component/personal_crafting) @@ -1342,7 +1343,6 @@ /mob/living/carbon/human/proc/initialize_vessel() //This needs fixing. For some reason mob species is not immediately set in set_species. SHOULD_NOT_OVERRIDE(TRUE) - regenerate_icons() make_blood() if(vessel.total_volume < species.blood_volume) vessel.maximum_volume = species.blood_volume diff --git a/code/modules/mob/living/carbon/human/update_icons.dm b/code/modules/mob/living/carbon/human/update_icons.dm index 57a3257b7c9..2f9807cf0a1 100644 --- a/code/modules/mob/living/carbon/human/update_icons.dm +++ b/code/modules/mob/living/carbon/human/update_icons.dm @@ -102,7 +102,7 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon() if(tail_style?.can_loaf && resting) // Only call these if we're resting? update_tail_showing() M.Scale(desired_scale_x, desired_scale_y) - M.Translate(cent_offset * desired_scale_x, (vis_height/2)*(desired_scale_y-1)) //CHOMPEdit + M.Translate(cent_offset * desired_scale_x, (vis_height/2)*(desired_scale_y-1)) else M.Scale(desired_scale_x, desired_scale_y) if(isnull(rest_dir))