From: Erik V. <ev...@us...> - 2009-09-03 21:37:07
|
Update of /cvsroot/rails/18xx/data/18EU In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv21151/data/18EU Modified Files: Game.xml Log Message: Implemented the certificate limit change after CGR formation. Have moved the initial limits out of Player into PlayerManager. PlayerManager is now a configurable component; this has affected all Game.xml files. The above has has effects on other classes, in particular StockRound. Index: Game.xml =================================================================== RCS file: /cvsroot/rails/18xx/data/18EU/Game.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Game.xml 11 Mar 2008 19:57:20 -0000 1.8 --- Game.xml 3 Sep 2009 21:36:54 -0000 1.9 *************** *** 21,26 **** </EndOfGame> </Component> ! <Component name="Bank" class="rails.game.Bank"> ! <Bank amount="12000"/> <Players number="2" cash="750" certLimit="28"/> <Players number="3" cash="450" certLimit="20"/> --- 21,25 ---- </EndOfGame> </Component> ! <Component name="PlayerManager" class="rails.game.PlayerManager"> <Players number="2" cash="750" certLimit="28"/> <Players number="3" cash="450" certLimit="20"/> *************** *** 28,31 **** --- 27,33 ---- <Players number="5" cash="300" certLimit="13"/> <Players number="6" cash="250" certLimit="11"/> + </Component> + <Component name="Bank" class="rails.game.Bank"> + <Bank amount="12000"/> </Component> <Component name="TileManager" class="rails.game.TileManager" |