Fix activating debug mode before loading a level

This commit is contained in:
Eevee (Evelyn Woods) 2020-12-08 17:54:21 -07:00
parent 9d9c5a3988
commit 829184056e

View File

@ -763,7 +763,9 @@ class Player extends PrimaryView {
this._redraw(); this._redraw();
}); });
this.update_ui(); if (this.level) {
this.update_ui();
}
} }
activate() { activate() {