summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/jrummikub/control/RoundControl.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/jrummikub/control/RoundControl.java b/src/jrummikub/control/RoundControl.java
index 00ebb6e..4949e2b 100644
--- a/src/jrummikub/control/RoundControl.java
+++ b/src/jrummikub/control/RoundControl.java
@@ -116,7 +116,11 @@ public class RoundControl {
}
private void dealStone() {
- // gameState.getActivePlayer().getHand().drop(object, position)
+ gameState
+ .getActivePlayer()
+ .getHand()
+ .drop(gameState.getGameHeap().drawStone(),
+ new Position(7 + (int) (Math.random() * 6), 0.5f));
}
private void dealPenalty(int count) {