From: Erik V. <ev...@us...> - 2009-11-22 14:28:58
|
Update of /cvsroot/rails/18xx/rails/game In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv25217/rails/game Modified Files: StartRound_1830.java Log Message: Undoing the passing-player-cannot-bid-again fix for 1830-style auctions. This was against the rules. Index: StartRound_1830.java =================================================================== RCS file: /cvsroot/rails/18xx/rails/game/StartRound_1830.java,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** StartRound_1830.java 17 Nov 2009 19:31:21 -0000 1.23 --- StartRound_1830.java 22 Nov 2009 14:28:49 -0000 1.24 *************** *** 306,310 **** } else { // More than one left: find next bidder ! auctionItem.setBid(-1, player); setNextBiddingPlayer(auctionItem, getCurrentPlayerIndex()); --- 306,315 ---- } else { // More than one left: find next bidder ! ! //auctionItem.setBid(-1, player); ! // That was incorrect: passing players may still bid. ! // But often they won't, or don't have the money. ! // TODO Need autopass facility, and skipping of turns if no money ! setNextBiddingPlayer(auctionItem, getCurrentPlayerIndex()); |