From: Erik V. <ev...@us...> - 2008-12-13 08:21:15
|
Update of /cvsroot/rails/18xx/rails/game/specific/_18EU In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv17321/rails/game/specific/_18EU Modified Files: StockRound_18EU.java Log Message: Undone previous fix, which was wrong. Index: StockRound_18EU.java =================================================================== RCS file: /cvsroot/rails/18xx/rails/game/specific/_18EU/StockRound_18EU.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** StockRound_18EU.java 12 Dec 2008 23:09:53 -0000 1.17 --- StockRound_18EU.java 13 Dec 2008 08:20:59 -0000 1.18 *************** *** 235,239 **** for (PublicCompanyI comp : comps) { type = comp.getTypeName(); ! if (type.equals("Major") && comp.hasStarted()) { targetCompanies.add(comp); } else if (type.equals("Minor") --- 235,240 ---- for (PublicCompanyI comp : comps) { type = comp.getTypeName(); ! if (type.equals("Major") && comp.hasStarted() ! && !comp.hasOperated()) { targetCompanies.add(comp); } else if (type.equals("Minor") |