mob/verb/randomize_deck()
while(usr.deck.len>0)
var/randchoose=pick(usr.deck)
usr.drawdeck.Add(randchoose)
usr.deck-=randchoose
Problem description: I am trying to add a list to another list but make the second list random. Its for a card game so I am shuffling the deck. When I add 2 lists together usr.drawdeck+=usr.deck it works, the objects appear in the stat panel. But when I randomly choose using var/randchoose=pick(usr.deck) an object it adds all the objects to the new list as numbers. There are no icons attached and you can't click them.