From 8def76f8498a538160f3f36733c7c28e8d95e531 Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Wed, 1 Apr 2015 18:06:46 -0700 Subject: [PATCH] Removing some debugs. --- code/modules/mob/living/carbon/human/human.dm | 3 ++- code/modules/surgery/robolimbs.dm | 3 --- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 59fcdeaa94b..1e693fd63fc 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -20,7 +20,8 @@ else set_species() - name = species.get_random_name(gender) + if(species) + name = species.get_random_name(gender) var/datum/reagents/R = new/datum/reagents(1000) reagents = R diff --git a/code/modules/surgery/robolimbs.dm b/code/modules/surgery/robolimbs.dm index 8d7b31c59b9..e845d8bb7b7 100644 --- a/code/modules/surgery/robolimbs.dm +++ b/code/modules/surgery/robolimbs.dm @@ -39,13 +39,10 @@ if(L.part) for(var/part_name in L.part) - world << "Checking [part_name]" if(!isnull(target.get_organ(part_name))) - world << "target has organ there" continue var/list/organ_data = target.species.has_limbs["[target_zone]"] if(!organ_data) - world << "target species has no limb for that part" continue var/new_limb_type = organ_data["path"] var/obj/item/organ/external/new_limb = new new_limb_type(target)