diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-05-02 12:57:40 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-18 12:42:59 +0100 |
commit | 8ff2f5e633188a34f4b16fb30917766c68d8a374 (patch) | |
tree | bb74d70405e434ab39459a1b8f612ef7f2f06869 /ui.js | |
parent | 50ab32c89d7e6e20c13dad4a3f42ca537e505e7f (diff) | |
download | 300-earth-and-water-8ff2f5e633188a34f4b16fb30917766c68d8a374.tar.gz |
300: more events!
Diffstat (limited to 'ui.js')
-rw-r--r-- | ui.js | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -231,7 +231,9 @@ function greek_info() { text += "1 card in hand"; else text += game.g_cards + " cards in hand"; - if (game.trigger.festival) + if (game.trigger.acropolis_on_fire) + text += "\nAcropolis on Fire!"; + if (game.trigger.carneia_festival) text += "\nCarneia Festival!"; return text; } |