From c497d8e1a931ddb2b0644f2a37d6319a6ce09307 Mon Sep 17 00:00:00 2001 From: Regory Date: Sat, 9 Aug 2014 18:41:40 -0400 Subject: [PATCH] Tajaran and Unathi shoes Stops Tajarans and Unathi from wearing sandals if they are a cyborg (no feet) or a clown (clowns have large shoes) --- code/modules/customitems/item_spawning.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/customitems/item_spawning.dm b/code/modules/customitems/item_spawning.dm index cdb1f6b7fa2..070d89ffa9d 100644 --- a/code/modules/customitems/item_spawning.dm +++ b/code/modules/customitems/item_spawning.dm @@ -11,6 +11,8 @@ M.generate_name() if( M.species.name=="Tajaran" || M.species.name=="Unathi" ) + if(M.mind.assigned_role == "Cyborg" || M.mind.assigned_role == "Clown") + return //Cyborgs don't wear shoes. Clown shoes are large. M.equip_to_slot_or_del(new /obj/item/clothing/shoes/sandal(M), slot_shoes) /proc/EquipCustomItems(mob/living/carbon/human/M)