From 95112ed97c2a5b1d6d468d8c9f4de05ba2a12cce Mon Sep 17 00:00:00 2001 From: Mechoid Date: Mon, 12 Feb 2018 14:53:41 -0800 Subject: [PATCH] Shapeshifters can properly wear the clothing of other species. --- code/modules/clothing/clothing.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm index 4c20e9924e..d2cbaecffd 100644 --- a/code/modules/clothing/clothing.dm +++ b/code/modules/clothing/clothing.dm @@ -66,10 +66,10 @@ if(H.species) if(exclusive) - if(!(H.species.get_bodytype() in species_restricted)) + if(!(H.species.get_bodytype(H) in species_restricted)) wearable = 1 else - if(H.species.get_bodytype() in species_restricted) + if(H.species.get_bodytype(H) in species_restricted) wearable = 1 if(!wearable && !(slot in list(slot_l_store, slot_r_store, slot_s_store)))