diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -6,6 +6,8 @@ const states = {} const AUTO_PLAY_EVENTS = true +const MOTD = "Send PLAYTEST feedback to\ntempus42@yahoo.com,\nwrayferrell@gmail.com,\njasoncarr@gmtgames.com" + const DELUXE = 2 const P1 = "Red" @@ -5824,6 +5826,8 @@ function goto_game_over(result, victory) { game.victory = victory log_br() log(game.victory) + log_br() + log(MOTD) return true } @@ -5941,7 +5945,9 @@ exports.setup = function (seed, scenario, options) { log_h1("Time of Crisis") if (options.deluxe) { - log("Deluxe Edition PLAYTEST") + log("Deluxe Edition") + log_br() + log(MOTD) log_br() game.v = DELUXE } |