work dammit

This commit is contained in:
deathride58
2017-09-20 21:58:42 -04:00
parent fb7f2d0ab8
commit 4473b24180

View File

@@ -186,26 +186,27 @@
. = ..()
if(owner && owner.current)
var/mob/living/carbon/human/H = owner.current
explanation_text = "Get your "
if(is_species(H, /datum/species/avian))
explanation_text += "scratchy claws "
else if(is_species(H, /datum/species/mammal))
explanation_text += "dirty paws "
else if(is_species(H, /datum/species/aquatic))
explanation_text += "fishy hands "
else if(is_species(H, /datum/species/xeno))
explanation_text += "weird claws "
else if(is_species(H, /datum/species/guilmon))
explanation_text += "digital claws "
else if(is_species(H, /datum/species/lizard))
explanation_text += "slimy claws "
else if(is_species(H, /datum/species/shark/datashark))
explanation_text += "glitchy hands "
else if(is_species(H, /datum/species/insect))
explanation_text += "gross grabbers "
else
explanation_text += "grubby hands "
explanation_text += "on a space suit."
if(H && H.dna && H.dna.species)
explanation_text = "Get your "
if(H.dna.species == /datum/species/avian)
explanation_text += "scratchy claws "
else if(H.dna.species == /datum/species/mammal)
explanation_text += "dirty paws "
else if(H.dna.species == /datum/species/aquatic)
explanation_text += "fishy hands "
else if(H.dna.species == /datum/species/xeno)
explanation_text += "weird claws "
else if(H.dna.species == /datum/species/guilmon)
explanation_text += "digital claws "
else if(H.dna.species == /datum/species/lizard)
explanation_text += "slimy claws "
else if(H.dna.species == /datum/species/shark/datashark)
explanation_text += "glitchy hands "
else if(H.dna.species == /datum/species/insect)
explanation_text += "gross grabbers "
else
explanation_text += "grubby hands "
explanation_text += "on a space suit."
/datum/objective/crew/assistant/spacesuit/check_completion()
if(owner.current && owner.current.check_contents_for(typesof(/obj/item/clothing/suit/space)))