Resolve problem with robot destructive analyzer

CallTechName() was borrowed from destructive_analyzer.dm for reuse in
the portable analyzer.

Resolves #12356
This commit is contained in:
Daranz
2016-03-08 23:31:30 +01:00
committed by Neerti
parent 8582f20ee0
commit 2482ddf55a
4 changed files with 17 additions and 24 deletions

View File

@@ -30,13 +30,6 @@
return "[output][and_text][input[index]]"
/proc/ConvertReqString2List(var/list/source_list)
var/list/temp_list = params2list(source_list)
for(var/O in temp_list)
temp_list[O] = text2num(temp_list[O])
return temp_list
//Returns list element or null. Should prevent "index out of bounds" error.
proc/listgetindex(var/list/list,index)
if(istype(list) && list.len)