summaryrefslogtreecommitdiff
path: root/ui.js
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2021-05-02 12:57:40 +0200
committerTor Andersson <tor@ccxvii.net>2023-02-18 12:42:59 +0100
commit8ff2f5e633188a34f4b16fb30917766c68d8a374 (patch)
treebb74d70405e434ab39459a1b8f612ef7f2f06869 /ui.js
parent50ab32c89d7e6e20c13dad4a3f42ca537e505e7f (diff)
download300-earth-and-water-8ff2f5e633188a34f4b16fb30917766c68d8a374.tar.gz
300: more events!
Diffstat (limited to 'ui.js')
-rw-r--r--ui.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/ui.js b/ui.js
index 1d1fc47..ac3d7e7 100644
--- a/ui.js
+++ b/ui.js
@@ -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;
}