Save system: ceremonial PR #42

Merged
pyrex merged 11 commits from savesystem into main 2025-02-25 04:14:02 +00:00
2 changed files with 3 additions and 1 deletions
Showing only changes of commit 6fe843bf55 - Show all commits

View File

@ -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();
},
);
}

View File

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