summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rules.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/rules.js b/rules.js
index cf46587..acec37d 100644
--- a/rules.js
+++ b/rules.js
@@ -2801,7 +2801,7 @@ function goto_supply_phase() {
if (game.location[game.king] === MINOR)
log("The new King is a minor.")
else
- log("The new King is in " + game.location[game.king] + ".")
+ log("The new King is in #" + game.location[game.king] + ".")
}
goto_execute_clarence()
@@ -2893,7 +2893,7 @@ states.enter_pretender_heir = {
},
area: function (to) {
logbr()
- log(block_name(game.who) + " came of age in " + to + ".")
+ log(block_name(game.who) + " came of age in #" + to + ".")
--game.killed_heirs[game.active]
game.location[game.who] = to
game.who = NOBODY
@@ -2973,7 +2973,7 @@ states.enter_royal_heir = {
},
area: function (to) {
logbr()
- log(block_name(game.who) + " came of age in " + to + ".")
+ log(block_name(game.who) + " came of age in #" + to + ".")
--game.killed_heirs[game.active]
game.location[game.who] = to
game.who = NOBODY