From: Brett L. <wak...@us...> - 2011-09-21 13:10:41
|
rails/game/StartRound_1830.java | 4 ++++ 1 file changed, 4 insertions(+) New commits: commit 4a170a460e1adc1cc8c3882e6541d7b18a12f2ef Author: Bill Rosgen <ro...@gm...> Date: Wed Sep 21 16:25:08 2011 +0800 bug fix: 1830-stye initial auction should advance player after price is reduced on first item diff --git a/rails/game/StartRound_1830.java b/rails/game/StartRound_1830.java index eef05f1..517a470 100644 --- a/rails/game/StartRound_1830.java +++ b/rails/game/StartRound_1830.java @@ -354,6 +354,10 @@ public class StartRound_1830 extends StartRound { startPacket.getFirstItem(), 0, 0); gameManager.setPriorityPlayer(); // startPacket.getFirstItem().getName()); + } else { + //BR: If the first item's price is reduced, but not to 0, + // we still need to advance to the next player + setNextPlayer(); } } else { numPasses.set(0); |