Update of /cvsroot/rails/18xx/rails/game
In directory sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv11332/rails/game
Modified Files:
OperatingRound.java
Log Message:
Fixed addressed player for train discards
Index: OperatingRound.java
===================================================================
RCS file: /cvsroot/rails/18xx/rails/game/OperatingRound.java,v
retrieving revision 1.90
retrieving revision 1.91
diff -C2 -d -r1.90 -r1.91
*** OperatingRound.java 15 Jan 2010 19:55:59 -0000 1.90
--- OperatingRound.java 15 Jan 2010 20:21:28 -0000 1.91
***************
*** 2245,2248 ****
--- 2245,2249 ----
player = gameManager.getPlayerByIndex(i);
if (excessTrainCompanies.containsKey(player)) {
+ setCurrentPlayer(player);
list = excessTrainCompanies.get(player);
for (PublicCompanyI comp : list) {
***************
*** 2252,2256 ****
// We come back here until all excess trains have been
// discarded.
- setCurrentPlayer(player);
return;
}
--- 2253,2256 ----
|