From 74258665410edbb7b6f4a0b56d80d16689fea6bb Mon Sep 17 00:00:00 2001 From: iainp5 Date: Mon, 11 Nov 2024 17:55:21 +0000 Subject: Fix Tyrant in end game scoring --- rules.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rules.js') diff --git a/rules.js b/rules.js index 9b8cb6f..dc6e0e5 100644 --- a/rules.js +++ b/rules.js @@ -1628,7 +1628,7 @@ states.end_turn_4_5_4 = { log_h1(`New Year's Eve Party`) game.vm_event = 104 //Check if the Communist receives VP from The Tyrant is Gone - if (game.persistent_events.includes(C_THE_TYRANT_IS_GONE)) { + if (game.the_tyrant_is_gone && game.the_tyrant_is_gone > 0) { game.vp -= 2 log(`Communist receives 2 VP from C97`) } @@ -1643,7 +1643,7 @@ states.end_turn_4_5_4 = { log_h2('Final Scoring') //Check if the Communist receives VP from The Tyrant is Gone - if (game.persistent_events.includes(C_THE_TYRANT_IS_GONE)) { + if (game.the_tyrant_is_gone && game.the_tyrant_is_gone > 0) { game.vp -= 2 log(`Communist receives 2 VP from C97`) } -- cgit v1.2.3