From b4aa9329adc9a82ed4fd2cd7c50bc8ad0a3f72cb Mon Sep 17 00:00:00 2001 From: Kistaro Windrider Date: Sat, 22 Feb 2025 21:36:55 -0800 Subject: [PATCH] add commented-out cheat and test buttons looks like mapgen is now fixed. here are the buttons I used to test it --- src/hotbar.ts | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/src/hotbar.ts b/src/hotbar.ts index 6c54b38..e396d7c 100644 --- a/src/hotbar.ts +++ b/src/hotbar.ts @@ -6,6 +6,8 @@ import { addButton } from "./button.ts"; import { getPlayerProgress } from "./playerprogress.ts"; import { getStateManager } from "./statemanager.ts"; import { getCheckModal } from "./checkmodal.ts"; +//import { LadderPickup } from "./pickups.ts"; +// import { generateMap } from "./mapgen.ts"; type Button = { label: string; @@ -53,6 +55,32 @@ export class Hotbar { enabled: true, endorse: getPlayerProgress().getBlood() < 100, }); + /* + buttons.push({ + label:"Cheat", + cbClick: () => { + new LadderPickup().onClick(); + }, + enabled: true, + endorse: false, + }) + buttons.push({ + label:"Dig for bad maps", + cbClick: () => { + let i = 0; + try { + for(; i < 10000; i++) { + generateMap(); + } + } catch(e) { + console.log(`Map gen failed after ${i} tries.`); + } + console.log("Ten thousand maps generated successfully."); + }, + enabled: true, + endorse: true, + }) + */ return buttons; }