Skip to content
This repository has been archived by the owner on Mar 31, 2020. It is now read-only.

Add blueberry cheese #81

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scripts/waffles.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
//

module.exports = (robot) => {
const waffleTypes = ['plain', 'kaya', 'butter', 'peanut', 'redbean', 'blueberry', 'cheese'];
const waffleTypes = ['plain', 'kaya', 'butter', 'peanut', 'redbean', 'blueberry', 'cheese', 'blueberryCheese'];
const wafflePrices = {
plain: 1.2, kaya: 1.5, butter: 1.5, peanut: 1.5, redbean: 1.5, blueberry: 1.8, cheese: 1.8, chocolate: 1.8,
plain: 1.2, kaya: 1.5, butter: 1.5, peanut: 1.5, redbean: 1.5, blueberry: 1.8, cheese: 1.8, chocolate: 1.8, blueberryCheese: 2.4
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add the trailing comma.

};
const waffleReminders = [5, 3, 1]; // minutes till timeout
const TIMEOUT = 15 * 60 * 1000;
Expand Down