diff options
| -rw-r--r-- | test-client/tiles.ts | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/test-client/tiles.ts b/test-client/tiles.ts index 618d6573..ebf70842 100644 --- a/test-client/tiles.ts +++ b/test-client/tiles.ts @@ -95,13 +95,15 @@ const plate = [circle(0.4, "#b6b6b6", "#f7f7f7", 0.02)];  const pot = [circle(0.35, "rgb(29, 29, 29)", "rgb(39, 39, 39)", 0.04)];  const mixer = [circle(0.35, "rgb(86, 168, 189)", "rgb(88, 222, 255)", 0.04)];  const burned = [circle(0.3, "rgb(61, 18, 0)"), cross(0.2, "red", 0.02)] +const herbs = [circle(0.3, "rgb(50, 133, 17)")]  export const FALLBACK_ITEM: Component[] = [circle(0.3, "#f0f")];  export const ITEMS: { [key: string]: Component[] } = {      "pot": pot,      "mixer": mixer, -    "herbs": [circle(0.3, "rgb(50, 133, 17)")], -    "herbs-mixer": [...mixer, circle(0.3, "rgb(50, 133, 17)")], +    "herbs": herbs, +    "herbs-mixer": [...mixer, ...herbs], +    "herbs-pot": [...pot, ...herbs],      "raw-steak": [circle(0.3, "#cc3705")],      "raw-steak-pot": [...pot, circle(0.3, "#cc3705")],      "steak-pot": [...pot, circle(0.3, "#702200")],  |