diff options
-rw-r--r-- | rules.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5029,7 +5029,7 @@ function spend_military_credit(cost) { function spend_senate_credit(cost) { let credit = Math.min(cost, game.sip) - game.mip -= credit + game.sip -= credit return cost - credit } @@ -5040,7 +5040,7 @@ states.buy_trash = { if (game.mip > 0) view.prompt += " " + game.mip + " military credits." if (game.sip > 0) - view.prompt += " " + game.mip + " senate credits." + view.prompt += " " + game.sip + " senate credits." let nprov = count_own_provinces() if (game.pp >= 3) { |