fix: SDONI recipe

This commit is contained in:
Joshua Shoemaker 2017-02-26 15:46:33 -06:00
parent 89e1c53378
commit df523fba49

View File

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