diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-07-17 13:47:36 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-11-16 19:19:39 +0100 |
commit | c39b3aaed8203fcc7565297532a0695302260e22 (patch) | |
tree | 3a62bfadd56b25bfb3f91c393b310c46a67f49af /ui.js | |
parent | 9ff6d22ddbd0e5690d5164694c9adf0158da893b (diff) | |
download | crusader-rex-c39b3aaed8203fcc7565297532a0695302260e22.tar.gz |
crusader: Fix regroup away test, again...
Diffstat (limited to 'ui.js')
-rw-r--r-- | ui.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -718,7 +718,7 @@ function start_flash() { return; flash_timer = setInterval(function () { if (!game.flash_next) { - element.textContent = game.battle.flash; + element.textContent = game.battle ? game.battle.flash : ""; clearInterval(flash_timer); flash_timer = 0; } else { |