From e6a5ac3e558ad6129ac293f2780119b7bd26a6d3 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Wed, 4 Jan 2023 14:17:23 +0100 Subject: Fix Delay the Princes. --- rules.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rules.js b/rules.js index 1c7743b..8a87718 100644 --- a/rules.js +++ b/rules.js @@ -3817,19 +3817,19 @@ states.novgorod_veche = { if (game.scenario === "Watland") { log("Decline of Andrey: Added 2VP to Veche.") - view.actions.veche_vp += 2 + game.pieces.veche_vp += 2 } else { log("Added 1VP to Veche.") - view.actions.veche_vp += 1 + game.pieces.veche_vp += 1 } if (is_lord_ready(LORD_ALEKSANDR)) { log(`Delayed L${LORD_ALEKSANDR}.`) - shift_lord_cylinder(LORD_ALEKSANDR, 1) + set_lord_calendar(LORD_ALEKSANDR, current_turn() + 1) } if (is_lord_ready(LORD_ANDREY)) { log(`Delayed L${LORD_ANDREY}.`) - shift_lord_cylinder(LORD_ANDREY, 1) + set_lord_calendar(LORD_ANDREY, current_turn() + 1) } }, lord(lord) { -- cgit v1.2.3