diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2011-05-05 23:29:07 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2011-05-05 23:29:07 +0200 |
commit | 55b19cef1d4594c0e4fe185b446eb59ad5f6bc85 (patch) | |
tree | 999ba0366dc32a76a783675d83a481ae13863193 /src/jrummikub/control | |
parent | 511b1139eae65e7eaae24596d76c2835346b3884 (diff) | |
download | JRummikub-55b19cef1d4594c0e4fe185b446eb59ad5f6bc85.tar JRummikub-55b19cef1d4594c0e4fe185b446eb59ad5f6bc85.zip |
Add stone dealing to RoundControl and fix some tests... again.
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@160 72836036-5685-4462-b002-a69064685172
Diffstat (limited to 'src/jrummikub/control')
-rw-r--r-- | src/jrummikub/control/RoundControl.java | 6 |
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) { |