diff options
| -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")], | 
