From: Erik V. <ev...@us...> - 2009-09-03 21:37:03
|
Update of /cvsroot/rails/18xx/data/1870 In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv21151/data/1870 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/1870/Game.xml,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** Game.xml 14 Feb 2008 21:49:45 -0000 1.18 --- Game.xml 3 Sep 2009 21:36:54 -0000 1.19 *************** *** 13,18 **** </EndOfGame> </Component> ! <Component name="Bank" class="rails.game.Bank"> ! <Bank amount="12000"/> <Players number="2" cash="1050" certLimit="28"/> <Players number="3" cash="700" certLimit="20"/> --- 13,17 ---- </EndOfGame> </Component> ! <Component name="PlayerManager" class="rails.game.PlayerManager"> <Players number="2" cash="1050" certLimit="28"/> <Players number="3" cash="700" certLimit="20"/> *************** *** 21,24 **** --- 20,26 ---- <Players number="6" cash="350" certLimit="11"/> </Component> + <Component name="Bank" class="rails.game.Bank"> + <Bank amount="12000"/> + </Component> <Component name="TileManager" class="rails.game.TileManager" file="TileSet.xml"/> |