summaryrefslogtreecommitdiff
path: root/test-client
diff options
context:
space:
mode:
Diffstat (limited to 'test-client')
-rw-r--r--test-client/tiles.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/test-client/tiles.ts b/test-client/tiles.ts
index dfdeff9a..d57a0754 100644
--- a/test-client/tiles.ts
+++ b/test-client/tiles.ts
@@ -145,9 +145,10 @@ const ITEMS: { [key in ItemName]: (c: string[]) => Component } = {
"sliced-lettuce": () => circle(0.3, "#a0da4f", "#64a30b", 0.08),
"pot": i => c => (circle(0.35, "rgb(29, 29, 29)", "rgb(39, 39, 39)", 0.04)(c), arrange_items(...i)(c)),
+ "pan": i => c => (circle(0.35, "rgb(29, 29, 29)", "rgb(56, 56, 56)", 0.2)(c), arrange_items(...i)(c)),
"foodprocessor": i => c => (circle(0.35, "rgb(86, 168, 189)", "rgb(88, 222, 255)", 0.04)(c), arrange_items(...i)(c)),
"plate": i => c => (circle(0.4, "#b6b6b6", "#f7f7f7", 0.02)(c), arrange_items(...i)(c)),
- "glass": () => circle(0.35, "rgb(150, 255, 237)", "rgb(52, 129, 155)", 0.02),
+ "glass": i => c => (circle(0.35, "rgb(150, 255, 237)", "rgb(52, 129, 155)", 0.02), arrange_items(...i)(c)),
}