Diseases will properly make new symptoms instead of sharing the same for everyone

This commit is contained in:
CitadelStationBot
2017-08-19 18:41:34 -05:00
parent 9da30ff9f3
commit c17ca3001f
2 changed files with 2 additions and 4 deletions
+1 -3
View File
@@ -57,9 +57,7 @@
symptoms = GenerateSymptoms(0, 2)
else
for(var/datum/symptom/S in D.symptoms)
var/datum/symptom/new_symp = new S.type
new_symp.name = S.name
new_symp.neutered = S.neutered
var/datum/symptom/new_symp = S.Copy()
symptoms += new_symp
Refresh()