Potential fix for 17238 (#17247)

* whoops get rid of chompedit

* potential fix
This commit is contained in:
Cameron Lennox
2025-03-01 17:37:40 -05:00
committed by GitHub
parent 04fe293f5d
commit d9783f686a
2 changed files with 2 additions and 2 deletions
@@ -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
@@ -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))