summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rules.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/rules.js b/rules.js
index 0cdda62..915bbea 100644
--- a/rules.js
+++ b/rules.js
@@ -4446,9 +4446,11 @@ function vm_do_remove_all_infl(space) {
function vm_replace_all_infl(space_id) {
if (game.active === DEM) {
game.demInfl[space_id] += game.comInfl[space_id]
+ log(`Replaced ${game.comInfl[space_id]} Communist SP in %${space_id} with Democratic SP`)
game.comInfl[space_id] = 0
} else {
game.comInfl[space_id] += game.demInfl[space_id]
+ log(`Replaced ${game.demInfl[space_id]} Democrat SP in %${space_id} with Communist SP`)
game.demInfl[space_id] = 0
}
check_tyrant()