[MIRROR] Cloner checks if occupant is human rather than just carbon (#5227)

* Cloner checks if occupant is human rather than just carbon (#35077)

* Makes cloner sure its human

* Revert "Makes cloner sure its human"

This reverts commit 2591f2a7cd74cc83d9afcbac5df59bfea20962df.

* travis fix maybe

* Cloner checks if occupant is human rather than just carbon
This commit is contained in:
CitadelStationBot
2018-02-04 22:07:42 -06:00
committed by Poojawa
parent 3578d42011
commit 684c98d2e2
+1 -1
View File
@@ -434,7 +434,7 @@
/obj/machinery/computer/cloning/proc/scan_occupant(occupant)
var/mob/living/mob_occupant = get_mob_or_brainmob(occupant)
var/datum/dna/dna
if(iscarbon(mob_occupant))
if(ishuman(mob_occupant))
var/mob/living/carbon/C = mob_occupant
dna = C.has_dna()
if(isbrain(mob_occupant))