summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2024-04-26 01:02:01 +0200
committerTor Andersson <tor@ccxvii.net>2024-04-26 01:02:01 +0200
commita44747a030764bd989d7c0575457e803dff48a05 (patch)
tree5d8492629818785137006a8f8254b223276a17bc
parent04b19181ed33cf259794e48d9652184f8d31473f (diff)
downloadplantagenet-a44747a030764bd989d7c0575457e803dff48a05.tar.gz
fix spoils
-rw-r--r--rules.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules.ts b/rules.ts
index f1e667e..bb06da4 100644
--- a/rules.ts
+++ b/rules.ts
@@ -5287,7 +5287,7 @@ states.choose_exile = {
function add_spoils(type: Asset, n) {
if (!game.spoils)
- game.spoils = [ 0, 0 ]
+ game.spoils = [ 0, 0, 0 ]
game.spoils[type] += n
}