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

File diff suppressed because one or more lines are too long

View File

@@ -247,7 +247,7 @@ CM.Disp.UpdateAscendState = function() {
if (Game.OnAscend) { if (Game.OnAscend) {
l('game').style.bottom = '0px'; l('game').style.bottom = '0px';
if (CM.Options.BotBar === 1) CM.Disp.BotBar.style.display = 'none'; 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 { else {
CM.Disp.ToggleBotBar(); CM.Disp.ToggleBotBar();