couple of fixes

fixes MP's ending up with 2 heads on death
fixes cloning machine cloning species that are meant to be uncloneable
This commit is contained in:
VampyrBytes
2014-08-10 11:11:21 +01:00
parent 9f20111d39
commit 896021c967
2 changed files with 4 additions and 3 deletions
+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