From 7c26e81c096bf5fdbe183de4a1c32870b0fb43cf Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Fri, 28 Mar 2025 20:11:17 +0100 Subject: Log when Volunteers effect is used. --- rules.js | 1 + rules.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/rules.js b/rules.js index 19a9b45..d792ea0 100644 --- a/rules.js +++ b/rules.js @@ -1888,6 +1888,7 @@ states.spend_hero_points = { }, volunteers() { const faction = get_active_faction(); + log(">M" + data_1.VOLUNTEERS_MEDALLION_ID); pay_hero_points(faction, 1); insert_after_active_node(create_state_node('add_to_front', faction, { src: 'volunteers', diff --git a/rules.ts b/rules.ts index 995296c..30272b1 100644 --- a/rules.ts +++ b/rules.ts @@ -2303,6 +2303,7 @@ states.spend_hero_points = { }, volunteers() { const faction = get_active_faction(); + log(">M" + VOLUNTEERS_MEDALLION_ID) pay_hero_points(faction, 1); insert_after_active_node( create_state_node('add_to_front', faction, { -- cgit v1.2.3