From: Erik V. <ev...@us...> - 2010-05-15 19:05:49
|
Update of /cvsroot/rails/18xx/rails/game/specific/_1835 In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv30026/rails/game/specific/_1835 Modified Files: GameManager_1835.java Log Message: Fixed 1835 bug at buying the first 5-train. Fixed Hamburg tile orientation: can no longer rotate. Index: GameManager_1835.java =================================================================== RCS file: /cvsroot/rails/18xx/rails/game/specific/_1835/GameManager_1835.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** GameManager_1835.java 15 Apr 2010 19:49:50 -0000 1.8 --- GameManager_1835.java 15 May 2010 19:05:39 -0000 1.9 *************** *** 37,46 **** } else { PhaseI phase = getCurrentPhase(); ! if (phase.getName().equals("4") || phase.getName().equals("4+4") ! || phase.getName().equals("5")) { ! if (!PrussianFormationRound.prussianIsComplete(this)) { ! previousRound = round; ! startPrussianFormationRound (null); ! } } else { super.nextRound(round); --- 37,45 ---- } else { PhaseI phase = getCurrentPhase(); ! if ((phase.getName().equals("4") || phase.getName().equals("4+4") ! || phase.getName().equals("5")) ! && !PrussianFormationRound.prussianIsComplete(this)) { ! previousRound = round; ! startPrussianFormationRound (null); } else { super.nextRound(round); |