From: Erik V. <ev...@us...> - 2009-02-04 20:43:48
|
Update of /cvsroot/rails/18xx/rails/game In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv5321/rails/game Modified Files: OperatingRound.java Log Message: CGR Formation round phase 1: repaying loans. Index: OperatingRound.java =================================================================== RCS file: /cvsroot/rails/18xx/rails/game/OperatingRound.java,v retrieving revision 1.55 retrieving revision 1.56 diff -C2 -d -r1.55 -r1.56 *** OperatingRound.java 4 Feb 2009 20:36:39 -0000 1.55 --- OperatingRound.java 4 Feb 2009 20:43:37 -0000 1.56 *************** *** 1758,1763 **** if (payment > 0) { new CashMove (operatingCompany, null, payment); ! } ! ReportBuffer.add (LocalText.getText("CompanyRepaysLoans", operatingCompany.getName(), Bank.format(payment), --- 1758,1762 ---- if (payment > 0) { new CashMove (operatingCompany, null, payment); ! ReportBuffer.add (LocalText.getText("CompanyRepaysLoans", operatingCompany.getName(), Bank.format(payment), *************** *** 1765,1768 **** --- 1764,1768 ---- number, Bank.format(operatingCompany.getValuePerLoan()))); + } } if (remainder > 0) { |