Merge pull request #722 from CHOMPStationBot/upstream-merge-9223

[MIRROR] [MIRROR] Fix blood from artifacts breaking the pathogenic isolator
This commit is contained in:
Nadyr
2020-10-22 09:54:04 -04:00
committed by GitHub
2 changed files with 5 additions and 1 deletions

View File

@@ -73,7 +73,7 @@
var/mob/living/carbon/human/D = B.data["donor"] var/mob/living/carbon/human/D = B.data["donor"]
pathogen_pool.Add(list(list(\ pathogen_pool.Add(list(list(\
"name" = "[D.get_species()] [B.name]", \ "name" = "[istype(D) ? "[D.get_species()] " : ""][B.name]", \
"dna" = B.data["blood_DNA"], \ "dna" = B.data["blood_DNA"], \
"unique_id" = V.uniqueID, \ "unique_id" = V.uniqueID, \
"reference" = "\ref[V]", \ "reference" = "\ref[V]", \

View File

@@ -0,0 +1,4 @@
author: Meghan-Rossi
delete-after: True
changes:
- bugfix: "Blood from artifacts will no longer break the pathogenic isolator."