Fix issue where pressing B just after loading crashes the game.

This commit is contained in:
hexagonhexagon 2020-06-28 01:18:49 -04:00
parent 1092975f08
commit 4c5043378f
1 changed files with 6 additions and 5 deletions

View File

@ -106,13 +106,14 @@ export class HubGoals extends BasicSerializableObject {
// Allow quickly switching goals in dev mode // Allow quickly switching goals in dev mode
if (G_IS_DEV) { if (G_IS_DEV) {
if (G_IS_DEV) { window.addEventListener("keydown", ev => {
window.addEventListener("keydown", ev => { if (ev.key === "b") {
if (ev.key === "b") { // root is not guaranteed to exist within ~0.5s after loading in
if (this.root && this.root.app && this.root.app.gameAnalytics) {
this.onGoalCompleted(); this.onGoalCompleted();
} }
}); }
} });
} }
} }