fix: SDONI recipe

This commit is contained in:
ysandler 2017-02-26 15:46:33 -06:00 committed by Joshua Shoemaker
parent ade61ef908
commit 72531f31c0

View File

@ -42,7 +42,13 @@ function espressoMacchiato (drink) {
name: "Starbucks Double Shot On Ice", name: "Starbucks Double Shot On Ice",
assigned: true, assigned: true,
shots: shotsSBDS(), shots: shotsSBDS(),
milk: milkTypes.TWOPERCENT milk: milkTypes.TWOPERCENT,
syrups: [
{
name: "Classic",
count: standardPumps(drink.size) - 1
}
]
} }
function shotsSBDS(){ function shotsSBDS(){
switch (drink.size){ switch (drink.size){
@ -908,4 +914,12 @@ function customIcedTeaLemonade(drink){
] ]
} }
return recipe; return recipe;
}
function icedTeaRefill(drink){
let recipe ={
name: "Iced Tea Refill",
assigned: true
}
return recipe;
} }