summaryrefslogtreecommitdiff
path: root/bag.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bag.cpp')
-rw-r--r--bag.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/bag.cpp b/bag.cpp
index 7aa1622..6fb831c 100644
--- a/bag.cpp
+++ b/bag.cpp
@@ -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;
}