Update of /cvsroot/rails/18xx/rails/game
In directory sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv18954/rails/game
Modified Files:
OperatingRound.java
Log Message:
Removed generation of free entry operating costs action (can be done by cash corrections now)
Index: OperatingRound.java
===================================================================
RCS file: /cvsroot/rails/18xx/rails/game/OperatingRound.java,v
retrieving revision 1.114
retrieving revision 1.115
diff -C2 -d -r1.114 -r1.115
*** OperatingRound.java 6 Mar 2010 18:28:41 -0000 1.114
--- OperatingRound.java 12 Mar 2010 07:30:24 -0000 1.115
***************
*** 2280,2290 ****
// Default OperatingCost Actions
! possibleActions.add(new OperatingCost(
! OperatingCost.OCType.LAY_TILE, 0, true
! ));
! if (operatingCompany.getNumberOfFreeBaseTokens() != 0
! && operatingCompany.getBaseTokenLayCost(null) != 0) {
! possibleActions.add(new OperatingCost(OperatingCost.OCType.LAY_BASE_TOKEN, 0, true));
! }
// Private Company Closure
--- 2280,2290 ----
// Default OperatingCost Actions
! // possibleActions.add(new OperatingCost(
! // OperatingCost.OCType.LAY_TILE, 0, true
! // ));
! // if (operatingCompany.getNumberOfFreeBaseTokens() != 0
! // && operatingCompany.getBaseTokenLayCost(null) != 0) {
! // possibleActions.add(new OperatingCost(OperatingCost.OCType.LAY_BASE_TOKEN, 0, true));
! // }
// Private Company Closure
|