summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2023-03-10 00:59:08 +0100
committerTor Andersson <tor@ccxvii.net>2023-03-10 11:59:06 +0100
commit5fa490516ba075eb9ff486449f70f9457dca802d (patch)
treeaf63adecd85faf5cf91e313e38a936c060ca414d
parent80672354a12cd1c6de39c23403636c41184fb859 (diff)
downloadnevsky-5fa490516ba075eb9ff486449f70f9457dca802d.tar.gz
Note about Curia able to give ships to lords without "ships" on mat.
-rw-r--r--rules.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/rules.js b/rules.js
index 6fdde84..4565437 100644
--- a/rules.js
+++ b/rules.js
@@ -2836,10 +2836,12 @@ states.heinrich_sees_the_curia_2 = {
if (game.count > 0) {
view.actions.take_prov = 1
view.actions.take_coin = 1
- view.actions.take_ship = 1
view.actions.take_boat = 1
view.actions.take_cart = 1
view.actions.take_sled = 1
+ // NOTE: Card text overrides general rule,
+ // so Curia can give ships to inland lords
+ view.actions.take_ship = 1
}
view.actions.done = 1
},
@@ -5279,8 +5281,6 @@ function prompt_spoils() {
view.actions.take_loot = 1
if (get_spoils(COIN) > 0)
view.actions.take_coin = 1
- if (get_spoils(SHIP) > 0)
- view.actions.take_ship = 1
if (get_spoils(BOAT) > 0)
view.actions.take_boat = 1
if (get_spoils(CART) > 0)