From: Erik V. <ev...@us...> - 2009-09-03 21:37:03
|
Update of /cvsroot/rails/18xx/data/18Kaas In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv21151/data/18Kaas 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/18Kaas/Game.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Game.xml 11 Dec 2007 20:58:34 -0000 1.4 --- Game.xml 3 Sep 2009 21:36:54 -0000 1.5 *************** *** 11,16 **** </EndOfGame> </Component> ! <Component name="Bank" class="rails.game.Bank"> ! <Bank amount="12000"/> <Players number="2" cash="1200" certLimit="28"/> <Players number="3" cash="800" certLimit="20"/> --- 11,15 ---- </EndOfGame> </Component> ! <Component name="PlayerManager" class="rails.game.PlayerManager"> <Players number="2" cash="1200" certLimit="28"/> <Players number="3" cash="800" certLimit="20"/> *************** *** 19,22 **** --- 18,24 ---- <Players number="6" cash="400" certLimit="11"/> </Component> + <Component name="Bank" class="rails.game.Bank"> + <Bank amount="12000"/> + </Component> <Component name="TileManager" class="rails.game.TileManager" file="TileSet.xml"/> |