Fixes monkey offsets (#91442)

This commit is contained in:
John Willard
2025-06-06 23:13:51 -04:00
committed by GitHub
parent 23568437bb
commit fb314ce394
2 changed files with 21 additions and 0 deletions
+13
View File
@@ -225,6 +225,19 @@
is_dimorphic = FALSE
head_flags = HEAD_LIPS|HEAD_DEBRAIN
/obj/item/bodypart/head/monkey/Initialize(mapload)
worn_head_offset = new(
attached_part = src,
feature_key = OFFSET_HEAD,
offset_y = list("south" = 1),
)
worn_glasses_offset = new(
attached_part = src,
feature_key = OFFSET_GLASSES,
offset_y = list("south" = 1),
)
return ..()
/obj/item/bodypart/head/alien
icon = 'icons/mob/human/species/alien/bodyparts.dmi'
icon_static = 'icons/mob/human/species/alien/bodyparts.dmi'
+8
View File
@@ -94,6 +94,14 @@
acceptable_bodyshape = BODYSHAPE_MONKEY
dmg_overlay_type = SPECIES_MONKEY
/obj/item/bodypart/chest/monkey/Initialize(mapload)
worn_neck_offset = new(
attached_part = src,
feature_key = OFFSET_NECK,
offset_y = list("south" = 1),
)
return ..()
/obj/item/bodypart/chest/alien
icon = 'icons/mob/human/species/alien/bodyparts.dmi'
icon_static = 'icons/mob/human/species/alien/bodyparts.dmi'