diff options
author | metamuffin <metamuffin@disroot.org> | 2024-06-20 01:39:29 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-06-23 19:21:49 +0200 |
commit | c65087b674bfded5881c506edd56896be063084c (patch) | |
tree | 89cdc50d0e2e688a66ba9ed0db2e41ff75ba0a2c | |
parent | 720bb2e4f53d4467832ba59f97c9b6b6786181e7 (diff) | |
download | hurrycurry-c65087b674bfded5881c506edd56896be063084c.tar hurrycurry-c65087b674bfded5881c506edd56896be063084c.tar.bz2 hurrycurry-c65087b674bfded5881c506edd56896be063084c.tar.zst |
fix typo in data
-rw-r--r-- | data/demands.yaml | 3 | ||||
-rw-r--r-- | test-client/tiles.ts | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/data/demands.yaml b/data/demands.yaml index d819f517..1400e9d9 100644 --- a/data/demands.yaml +++ b/data/demands.yaml @@ -2,4 +2,5 @@ - { from: tomatoburger-meal, to: dirty-plate } - { from: tomatosteak-meal, to: dirty-plate } - { from: steak-meal, to: dirty-plate } -- { from: sliced-tomato-mea, to: dirty-plate } +- { from: bread-meal, to: dirty-plate } +- { from: sliced-tomato-meal, to: dirty-plate } diff --git a/test-client/tiles.ts b/test-client/tiles.ts index a7fe0911..7db8f2a3 100644 --- a/test-client/tiles.ts +++ b/test-client/tiles.ts @@ -105,6 +105,7 @@ export const ITEMS: { [key: string]: Component[] } = { "plate": plate, "dirty-plate": [circle(0.4, "#947a6f", "#d3a187", 0.02)], "steak-meal": [...plate, ...arrange_items("steak")], + "bread-meal": [...plate, ...arrange_items("bread")], "burger-meal": [...plate, ...arrange_items("bread", "steak")], "sliced-tomato-meal": [...plate, ...arrange_items("sliced-tomato")], "tomatosteak-meal": [...plate, ...arrange_items("tomato", "steak")], |