Fixes para's abilities to use other vehicles.

This commit is contained in:
Fermi
2019-06-02 19:11:34 +01:00
parent 59e5372abd
commit e607cd3c7d
2 changed files with 5 additions and 7 deletions
+1 -1
View File
@@ -245,7 +245,7 @@
/datum/quirk/prosthetic_limb/on_spawn()
var/mob/living/carbon/human/H = quirk_holder
var/limb_slot
if(H.has_trait("TRAIT_PARA"))//Prevent paraplegic legs being replaced
if(H.has_trait(TRAIT_PARA))//Prevent paraplegic legs being replaced
limb_slot = pick(BODY_ZONE_L_ARM, BODY_ZONE_R_ARM)
else
limb_slot = pick(BODY_ZONE_L_ARM, BODY_ZONE_R_ARM, BODY_ZONE_L_LEG, BODY_ZONE_R_LEG)