Corrects issue in cherrypicking.

This commit is contained in:
Neerti
2016-03-31 16:29:48 -04:00
parent 9837c098eb
commit 6d7b4bfd9f

View File

@@ -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. **