diff options
author | metamuffin <metamuffin@disroot.org> | 2024-09-13 18:23:56 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-09-13 18:24:08 +0200 |
commit | cf5028bfa9e4502805563ad2c04f0b6c6e3b3f8e (patch) | |
tree | b641745ab143427fe293d8c2069ec1e7fbf88b6a /test-client/tiles.ts | |
parent | e788c66c039e74c9ce1d51646c6b2f42113be20f (diff) | |
download | hurrycurry-cf5028bfa9e4502805563ad2c04f0b6c6e3b3f8e.tar hurrycurry-cf5028bfa9e4502805563ad2c04f0b6c6e3b3f8e.tar.bz2 hurrycurry-cf5028bfa9e4502805563ad2c04f0b6c6e3b3f8e.tar.zst |
rename raw-steak-crate and fix settings category hook
Diffstat (limited to 'test-client/tiles.ts')
-rw-r--r-- | test-client/tiles.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test-client/tiles.ts b/test-client/tiles.ts index 6bd724f1..d1011cc2 100644 --- a/test-client/tiles.ts +++ b/test-client/tiles.ts @@ -113,7 +113,7 @@ const tref = (name: keyof typeof TILES): Component => c => TILES[name].forEach(f type HelperItemName = "steak" | "milk" | "cooked-rice" | "curry" | "strawberry-icecream" | "strawberry-shake" export type ItemName = HelperItemName | "dirty-plate" | "plate" | "tomato" | "raw-steak" | "flour" | "leek" | "rice" | "fish" | "coconut" | "strawberry" | "foodprocessor" | "flour-foodprocessor" | "dough-foodprocessor" | "dough" | "bread" | "burned" | "bread-slice" | "pot" | "raw-steak-pot" | "steak-pot" | "burned-pot" | "sliced-tomato" | "steak-plate" | "sliced-tomato-plate" | "bread-slice-plate" | "bread-slice-steak-plate" | "bread-slice-sliced-tomato-plate" | "bread-slice-sliced-tomato-steak-plate" | "sliced-tomato-steak-plate" | "tomato-foodprocessor" | "tomato-juice-foodprocessor" | "leek-pot" | "tomato-juice-pot" | "leek-tomato-juice-pot" | "tomato-soup-pot" | "tomato-soup-plate" | "sliced-fish" | "rice-pot" | "cooked-rice-pot" | "nigiri" | "nigiri-plate" | "strawberry-foodprocessor" | "strawberry-puree-foodprocessor" | "coconut-foodprocessor" | "milk-foodprocessor" | "coconut-strawberry-puree-foodprocessor" | "strawberry-shake-foodprocessor" | "milk-strawberry-foodprocessor" | "strawberry-icecream-foodprocessor" | "strawberry-icecream-plate" | "rice-foodprocessor" | "rice-flour-foodprocessor" | "rice-flour-pot" | "mochi-dough-pot" | "strawberry-mochi" | "glass" | "strawberry-shake-glass" | "tomato-juice-glass" | "water-glass" | "milk-pot" | "tomato-pot" | "leek-milk-pot" | "leek-tomato-pot" | "leek-milk-tomato-pot" | "milk-tomato-pot" | "curry-pot" | "cooked-rice-plate" | "curry-plate" | "cooked-rice-curry-plate" -export type TileName = "sink" | "conveyor" | "book" | "tomato-crate" | "raw-steak-crate" | "flour-crate" | "leek-crate" | "rice-crate" | "fish-crate" | "coconut-crate" | "strawberry-crate" | "oven" | "cuttingboard" | "stove" | "freezer" | "trash" | "grass" | "tree" | "wall" | "chair" | "floor" | "door" | "counter" | "wall-window" | "table" | "counter-window" | "path" | "lamp" | "street" +export type TileName = "sink" | "conveyor" | "book" | "tomato-crate" | "steak-crate" | "flour-crate" | "leek-crate" | "rice-crate" | "fish-crate" | "coconut-crate" | "strawberry-crate" | "oven" | "cuttingboard" | "stove" | "freezer" | "trash" | "grass" | "tree" | "wall" | "chair" | "floor" | "door" | "counter" | "wall-window" | "table" | "counter-window" | "path" | "lamp" | "street" const pot = iref("pot") const plate = iref("plate") @@ -227,7 +227,7 @@ const TILES: { [key in TileName]: Component[] } = { "lamp": [tref("grass"), rect(0.3, "rgb(255, 217, 127)", "rgb(32, 32, 32)", 0.1)], "flour-crate": crate("flour"), - "raw-steak-crate": crate("raw-steak"), + "steak-crate": crate("raw-steak"), "tomato-crate": crate("tomato"), "leek-crate": crate("leek"), "rice-crate": crate("rice"), |