diff --git a/src/main.ts b/src/main.ts index 1cfc70e..9342b84 100644 --- a/src/main.ts +++ b/src/main.ts @@ -8,6 +8,7 @@ import { Transient } from "./game/state"; import Decimal, { DecimalSource } from "./lib/break_eternity"; import { load } from "./util/save"; +document.title = projInfo.title; if (projInfo.id === "") { throw "Project ID is empty! Please select a unique ID for this project in /src/data/projInfo.json"; } @@ -51,7 +52,6 @@ requestAnimationFrame(async () => { })); globalBus.emit("setupVue", vue); vue.mount("#app"); - document.title = projInfo.title; startGameLoop(); });