diff --git a/code/modules/reagents/chemistry/machinery/pandemic.dm b/code/modules/reagents/chemistry/machinery/pandemic.dm index 54c52b7d096..1d300767488 100644 --- a/code/modules/reagents/chemistry/machinery/pandemic.dm +++ b/code/modules/reagents/chemistry/machinery/pandemic.dm @@ -184,7 +184,8 @@ var/reason = input(user,"Enter a reason for the release", "Write", null) as message reason += "" var/english_symptoms = list() - for(var/datum/symptom/S in D.symptoms) + for(var/I in D.symptoms) + var/datum/symptom/S = I english_symptoms += S.name var/symtoms = english_list(english_symptoms)