Merge pull request #375 from VampyrBytes/master

couple of fixes
This commit is contained in:
ZomgPonies
2014-08-11 20:38:11 -04:00
2 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -343,7 +343,7 @@
return
/obj/machinery/computer/cloning/proc/scan_mob(mob/living/carbon/human/subject as mob)
if ((isnull(subject)) || (!(ishuman(subject))) || (!subject.dna) || (subject.flags & NO_SCAN))
if ((isnull(subject)) || (!(ishuman(subject))) || (!subject.dna) || (subject.species.flags & NO_SCAN))
scantemp = "Error: Unable to locate valid genetic data."
return
if (subject.brain_op_stage == 4.0)
+3 -2
View File
@@ -604,8 +604,9 @@ Note that amputating the affected organ does in fact remove the infection from t
switch(body_part)
if(HEAD)
if(owner.species.flags & IS_SYNTHETIC)
organ= new /obj/item/weapon/organ/head/posi(owner.loc, owner)
owner.death()
if(owner.mind)
organ= new /obj/item/weapon/organ/head/posi(owner.loc, owner)
owner.death()
else if(SKELETON in owner.mutations)
organ= new /obj/item/weapon/skeleton/head(owner.loc)
else