ID:175036
 
var/list/thelist = list(1,2)
var/list/otherlist = list()
for(var/i = thelist.len, i > 0, i--)
otherlist.Add(thelist[i])
thelist = otherlist
would work fine.
In response to Jon88
Thanks, I wasnt quite sure where to start with that one.