From: Erik V. <ev...@us...> - 2009-07-17 21:40:53
|
Update of /cvsroot/rails/18xx/rails/game In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv21046/rails/game Modified Files: OperatingRound.java Log Message: Fixes to CGR formation Index: OperatingRound.java =================================================================== RCS file: /cvsroot/rails/18xx/rails/game/OperatingRound.java,v retrieving revision 1.59 retrieving revision 1.60 diff -C2 -d -r1.59 -r1.60 *** OperatingRound.java 14 Jul 2009 20:49:34 -0000 1.59 --- OperatingRound.java 17 Jul 2009 21:40:39 -0000 1.60 *************** *** 2074,2078 **** for (int j = 0; j < operatingCompanyArray.length; j++) { c = operatingCompanyArray[j]; ! if (c == operatingCompany) continue; p = c.getPresident(); index = p.getIndex(); --- 2074,2078 ---- for (int j = 0; j < operatingCompanyArray.length; j++) { c = operatingCompanyArray[j]; ! if (c.isClosed() || c == operatingCompany) continue; p = c.getPresident(); index = p.getIndex(); |