Disable mset for now

This commit is contained in:
dylan
2023-05-14 13:54:52 -07:00
parent 7b04080e9e
commit a6d093d728
4 changed files with 15 additions and 10 deletions

View File

@@ -18,7 +18,7 @@ export type Sheet = {
}
export type SheetType = Sheet["sheet_type"];
export const getSheet = (n: number) => {
export const getSheet = (n: number): Sheet => {
return getCart()[n];
}
@@ -51,5 +51,6 @@ export const getMapSheet = (sheet: number) => {
if (sheet_type !== "map") {
throw "Trying to use a non-map sheet as a map."
}
sheet_type
return LinearGrid(value, 64);
}