Merge pull request #3215 from Citadel-Station-13/upstream-merge-31392

[MIRROR] Fix: Prevents PANDEMIC Neutering Lockout
This commit is contained in:
LetterJay
2017-10-08 16:19:33 -04:00
committed by GitHub
+3 -2
View File
@@ -290,9 +290,10 @@
if(!id)
var/list/L = list()
for(var/datum/symptom/S in symptoms)
L += S.id
if(S.neutered)
L += "N"
L += "[S.id]N"
else
L += S.id
L = sortList(L) // Sort the list so it doesn't matter which order the symptoms are in.
var/result = jointext(L, ":")
id = result