diff --git a/src/hotbar.ts b/src/hotbar.ts index 612d35f..6ce230a 100644 --- a/src/hotbar.ts +++ b/src/hotbar.ts @@ -6,6 +6,7 @@ import { addButton } from "./button.ts"; import { getPlayerProgress } from "./playerprogress.ts"; import { getStateManager } from "./statemanager.ts"; import { getCheckModal } from "./checkmodal.ts"; +import { saveGame } from "./save.ts"; type Button = { label: string; @@ -112,6 +113,7 @@ export class Hotbar { }, () => { getStateManager().advance(); + saveGame(); }, ); } diff --git a/src/save.ts b/src/save.ts index a0e80d8..ec36afa 100644 --- a/src/save.ts +++ b/src/save.ts @@ -85,7 +85,7 @@ function readBestSave(): SaveFileV1LoadResult { }; } -export function save() { +export function saveGame() { const targetSlot: SaveSlot = readBestSave().slot === "FLEDGLING_SLOT_1" ? "FLEDGLING_SLOT_2"