diff options
-rw-r--r-- | info/playtest.html | 2 | ||||
-rw-r--r-- | play.html | 1 | ||||
-rw-r--r-- | rules.js | 8 |
3 files changed, 9 insertions, 2 deletions
diff --git a/info/playtest.html b/info/playtest.html index d5d7c3a..d1c4a7b 100644 --- a/info/playtest.html +++ b/info/playtest.html @@ -31,7 +31,7 @@ The "Deluxe Edition" option will enable the following changes. Please send playtest feedback to the designers: <ul> -<li>By e-mail to <a href="mailto:tor.andersson+toc@gmail.com">xyz@gmail.com</a> +<li>By e-mail to tempus42@yahoo.com, wrayferrell@gmail.com, and jasoncarr@gmtgames.com. <li>On the <a href="https://discord.gg/pvp5f7W3zD">#time-of-crisis</a> Discord channel </ul> @@ -29,6 +29,7 @@ <li><a target="_blank" href="/time-of-crisis/info/expansion.html">Expansion Rules</a> <li><a target="_blank" href="/time-of-crisis/info/aid.html">Player Aid</a> <li><a target="_blank" href="/time-of-crisis/info/cards.html">Card Gallery</a> + <li><a target="_blank" href="/time-of-crisis/info/playtest.html">PLAYTEST Notes</a> </menu> </details> </div> @@ -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 } |