diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |