Tweaks mixed blood samples to preserve cloneable if the samples are the same (#36961)

This commit is contained in:
SailorDave
2018-04-06 02:54:29 -04:00
committed by CitadelStationBot
parent 49fd917fee
commit 107ccfda10
@@ -41,7 +41,8 @@
/datum/reagent/blood/on_merge(list/mix_data)
if(data && mix_data)
data["cloneable"] = 0 //On mix, consider the genetic sampling unviable for pod cloning, or else we won't know who's even getting cloned, etc
if(data["blood_DNA"] != mix_data["blood_DNA"])
data["cloneable"] = 0 //On mix, consider the genetic sampling unviable for pod cloning if the DNA sample doesn't match.
if(data["viruses"] || mix_data["viruses"])
var/list/mix1 = data["viruses"]