Fixed fatal error in CM.Disp.UpdateAscendState

This commit is contained in:
Daniël van Noord
2021-02-20 17:17:41 +01:00
parent af5a44eb9a
commit 88d7b11b87
2 changed files with 2 additions and 2 deletions

View File

@@ -247,7 +247,7 @@ CM.Disp.UpdateAscendState = function() {
if (Game.OnAscend) {
l('game').style.bottom = '0px';
if (CM.Options.BotBar === 1) CM.Disp.BotBar.style.display = 'none';
if (CM.Options.TimerBar === 1) CM.Disp.f.style.display = 'none';
if (CM.Options.TimerBar === 1) CM.Disp.TimerBar.style.display = 'none';
}
else {
CM.Disp.ToggleBotBar();