diff --git a/src/as/com/threerings/parlor/card/data/Deck.as b/src/as/com/threerings/parlor/card/data/Deck.as index 556d2835..146ff2bb 100644 --- a/src/as/com/threerings/parlor/card/data/Deck.as +++ b/src/as/com/threerings/parlor/card/data/Deck.as @@ -23,6 +23,7 @@ package com.threerings.parlor.card.data { import mx.collections.ArrayCollection; +import com.threerings.util.Collections; import com.threerings.util.StreamableArrayList; /** @@ -102,7 +103,7 @@ public class Deck extends StreamableArrayList */ public function shuffle () :void { - // TODO: Collections.shuffle(this); + Collections.shuffle(this); } } }