Save on end-of-day, or after endgame.

Putting it here avoids a circular reference problem
This commit is contained in:
Kistaro Windrider 2025-02-23 22:30:57 -08:00
parent 93ef512554
commit 6fe843bf55
Signed by: kistaro
SSH Key Fingerprint: SHA256:TBE2ynfmJqsAf0CP6gsflA0q5X5wD5fVKWPsZ7eVUg8
2 changed files with 3 additions and 1 deletions

View File

@ -6,6 +6,7 @@ import { addButton } from "./button.ts";
import { getPlayerProgress } from "./playerprogress.ts"; import { getPlayerProgress } from "./playerprogress.ts";
import { getStateManager } from "./statemanager.ts"; import { getStateManager } from "./statemanager.ts";
import { getCheckModal } from "./checkmodal.ts"; import { getCheckModal } from "./checkmodal.ts";
import { saveGame } from "./save.ts";
type Button = { type Button = {
label: string; label: string;
@ -112,6 +113,7 @@ export class Hotbar {
}, },
() => { () => {
getStateManager().advance(); getStateManager().advance();
saveGame();
}, },
); );
} }

View File

@ -85,7 +85,7 @@ function readBestSave(): SaveFileV1LoadResult {
}; };
} }
export function save() { export function saveGame() {
const targetSlot: SaveSlot = const targetSlot: SaveSlot =
readBestSave().slot === "FLEDGLING_SLOT_1" readBestSave().slot === "FLEDGLING_SLOT_1"
? "FLEDGLING_SLOT_2" ? "FLEDGLING_SLOT_2"