Can you reverse the order of the contents of a list? -nt-
var/list/thelist = list(1,2)var/list/otherlist = list()for(var/i = thelist.len, i > 0, i--) otherlist.Add(thelist[i])thelist = otherlist