diff options
Diffstat (limited to 'bag.cpp')
-rw-r--r-- | bag.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -176,7 +176,7 @@ LetterString Bag::refill(Rack &rack, const LetterString &drawingOrder) LongLetterString Bag::shuffledTiles() const { LongLetterString ret(m_tiles); - random_shuffle(ret.begin(), ret.end()); + DataManager::self()->shuffle(ret); return ret; } |