Changed some default values in projInfo

This commit is contained in:
thepaperpilot 2022-03-02 20:20:18 -06:00
parent 0f498ab2f7
commit 48ef321c89
2 changed files with 6 additions and 2 deletions

View file

@ -1,7 +1,7 @@
{
"title": "Profectus",
"id": "profectus",
"author": "thepaperpilot",
"id": "",
"author": "",
"discordName": "The Paper Pilot Community",
"discordLink": "https://discord.gg/WzejVAx",

View file

@ -8,6 +8,10 @@ import { Transient } from "./game/state";
import Decimal, { DecimalSource } from "./lib/break_eternity";
import { load } from "./util/save";
if (projInfo.id === "") {
throw "Project ID is empty! Please select a unique ID for this project in /src/data/projInfo.json";
}
declare global {
interface Window {
vue: VueApp;