File tree Expand file tree Collapse file tree 2 files changed +38
-50
lines changed Expand file tree Collapse file tree 2 files changed +38
-50
lines changed Original file line number Diff line number Diff line change @@ -20,10 +20,10 @@ local NoAlcohol = {
20
20
] else [
21
21
ingredient,
22
22
],
23
- ingredients: [
23
+ ingredients: std.flattenArrays ( [
24
24
Substitute(i)
25
25
for i in super .ingredients
26
- ],
26
+ ]) ,
27
27
};
28
28
29
29
local PartyMode = {
Original file line number Diff line number Diff line change 2
2
"Virgin Daiquiri": {
3
3
"garnish": "Lime wedge",
4
4
"ingredients": [
5
- [
6
- {
7
- "kind": "Water",
8
- "qty": 2
9
- },
10
- {
11
- "kind": "Vanilla Essence",
12
- "qty": "dash"
13
- },
14
- {
15
- "kind": "Angustura Bitters",
16
- "qty": "dash"
17
- }
18
- ],
19
- [
20
- {
21
- "kind": "Lime",
22
- "qty": 1
23
- }
24
- ],
25
- [
26
- {
27
- "kind": "Simple Syrup",
28
- "qty": 0.5
29
- }
30
- ]
5
+ {
6
+ "kind": "Water",
7
+ "qty": 2
8
+ },
9
+ {
10
+ "kind": "Vanilla Essence",
11
+ "qty": "dash"
12
+ },
13
+ {
14
+ "kind": "Angustura Bitters",
15
+ "qty": "dash"
16
+ },
17
+ {
18
+ "kind": "Lime",
19
+ "qty": 1
20
+ },
21
+ {
22
+ "kind": "Simple Syrup",
23
+ "qty": 0.5
24
+ }
31
25
],
32
26
"served": "Straight Up"
33
27
},
34
28
"Virgin Whiskey Sour": {
35
29
"garnish": "Lemon Juice twist",
36
30
"ingredients": [
37
- [
38
- {
39
- "kind": "Water",
40
- "qty": 2
41
- },
42
- {
43
- "kind": "Angustura Bitters",
44
- "qty": "tsp"
45
- }
46
- ],
47
- [
48
- {
49
- "kind": "Lemon Juice",
50
- "qty": 1
51
- }
52
- ],
53
- [
54
- {
55
- "kind": "Simple Syrup",
56
- "qty": 0.5
57
- }
58
- ]
31
+ {
32
+ "kind": "Water",
33
+ "qty": 2
34
+ },
35
+ {
36
+ "kind": "Angustura Bitters",
37
+ "qty": "tsp"
38
+ },
39
+ {
40
+ "kind": "Lemon Juice",
41
+ "qty": 1
42
+ },
43
+ {
44
+ "kind": "Simple Syrup",
45
+ "qty": 0.5
46
+ }
59
47
],
60
48
"served": "Straight Up"
61
49
},
You can’t perform that action at this time.
0 commit comments