fixes being unable to (re)attach nymph hands and feet (#14228)

This commit is contained in:
anconfuzedrock
2022-06-08 07:59:16 -04:00
committed by GitHub
parent 3826e35ccd
commit 458bfbee51
2 changed files with 7 additions and 1 deletions

View File

@@ -96,7 +96,7 @@
/datum/component/nymph_limb
var/list/valid_species = list(SPECIES_UNATHI, SPECIES_SKRELL)
var/list/valid_organs_to_replace = list(BP_L_ARM, BP_R_ARM, BP_L_LEG, BP_R_LEG)
var/list/valid_organs_to_replace = list(BP_L_ARM, BP_L_HAND, BP_R_ARM, BP_R_HAND, BP_L_LEG, BP_L_FOOT, BP_R_LEG, BP_R_FOOT)
// Main limb where the Nymph mob lives
var/list/nymph_limb_types = list(
/obj/item/organ/external/arm/nymph,

View File

@@ -0,0 +1,6 @@
author: anconfuzedrock
delete-after: True
changes:
- bugfix: "Diona Nymph Limbs can now be reattached to hands and feet, rather than just arms and legs."