Indentation

This commit is contained in:
kevinz000
2019-01-12 05:53:20 -08:00
parent 61561ade31
commit 07e5d92ea9
3 changed files with 2 additions and 5 deletions

View File

@@ -27,9 +27,6 @@ proc/listgetindex(var/list/list,index)
return list[index]
return
proc/islist(list/list)
return(istype(list))
//Return either pick(list) or null if list is not of type /list or is empty
proc/safepick(list/list)
if(!islist(list) || !list.len)