Merge pull request #13880 from Citadel-Station-13/silicons-patch-46

antag rep configs are now actually possible to set for jobs with more than one word in the title
This commit is contained in:
DeltaFire
2020-12-28 17:56:17 +01:00
committed by GitHub
+2 -2
View File
@@ -133,12 +133,12 @@
return TRUE
/datum/job/proc/GetAntagRep()
. = CONFIG_GET(keyed_list/antag_rep)[lowertext(title)]
. = CONFIG_GET(keyed_list/antag_rep)[ckey(title)]
if(. == null)
return antag_rep
/datum/job/proc/GetThreat()
. = CONFIG_GET(keyed_list/job_threat)[lowertext(title)]
. = CONFIG_GET(keyed_list/job_threat)[ckey(title)]
if(. == null)
return threat