diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-04-26 01:02:01 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-04-26 01:02:01 +0200 |
commit | a44747a030764bd989d7c0575457e803dff48a05 (patch) | |
tree | 5d8492629818785137006a8f8254b223276a17bc | |
parent | 04b19181ed33cf259794e48d9652184f8d31473f (diff) | |
download | plantagenet-a44747a030764bd989d7c0575457e803dff48a05.tar.gz |
fix spoils
-rw-r--r-- | rules.ts | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 } |