add commented-out cheat and test buttons
looks like mapgen is now fixed. here are the buttons I used to test it
This commit is contained in:
parent
ec2e21c712
commit
b4aa9329ad
@ -6,6 +6,8 @@ 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 { LadderPickup } from "./pickups.ts";
|
||||||
|
// import { generateMap } from "./mapgen.ts";
|
||||||
|
|
||||||
type Button = {
|
type Button = {
|
||||||
label: string;
|
label: string;
|
||||||
@ -53,6 +55,32 @@ export class Hotbar {
|
|||||||
enabled: true,
|
enabled: true,
|
||||||
endorse: getPlayerProgress().getBlood() < 100,
|
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;
|
return buttons;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user