From 6d7b4bfd9fa58ee02bc19fa844fc8cbc7537db82 Mon Sep 17 00:00:00 2001 From: Neerti Date: Thu, 31 Mar 2016 16:29:48 -0400 Subject: [PATCH] Corrects issue in cherrypicking. --- code/modules/research/research.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/research/research.dm b/code/modules/research/research.dm index 9bb63fbd83..fc5ca4bcbf 100644 --- a/code/modules/research/research.dm +++ b/code/modules/research/research.dm @@ -123,12 +123,12 @@ research holder datum. return // A simple helper proc to find the name of a tech with a given ID. -/proc/CallTechName(var/ID) - for(var/T in subtypesof(/datum/tech)) +/proc/CallTechName(var/ID) + for(var/T in subtypes(/datum/tech)) var/datum/tech/check_tech = T if(initial(check_tech.id) == ID) return initial(check_tech.name) - + /*************************************************************** ** Technology Datums ** ** Includes all the various technoliges and what they make. **