added a few nuts, moved chives and parsley to highprio

This commit is contained in:
tastytea 2018-01-22 15:01:32 +01:00
parent 48c15f324b
commit f99b4eff83
Signed by: tastytea
GPG Key ID: 59346E0EA35C67E5
3 changed files with 10 additions and 7 deletions

View File

@ -2,7 +2,7 @@ cmake_minimum_required (VERSION 3.7)
include(GNUInstallDirs) include(GNUInstallDirs)
project (soupbot project (soupbot
VERSION 0.2.1 VERSION 0.2.2
LANGUAGES CXX LANGUAGES CXX
) )
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14 -Wall") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14 -Wall")

View File

@ -50,7 +50,6 @@
"sugar", "sugar",
"soy sauce", "soy sauce",
"chilli peppers", "chilli peppers",
"chives",
"basil", "basil",
"marjoram", "marjoram",
"rosemary", "rosemary",
@ -59,8 +58,7 @@
"allspice", "allspice",
"cumin", "cumin",
"curcuma", "curcuma",
"coriander", "coriander"
"parsley"
], ],
"fruits": "fruits":
[ [
@ -76,7 +74,10 @@
"strawberries", "strawberries",
"blackberries", "blackberries",
"blueberries", "blueberries",
"raspberries" "raspberries",
"peanuts",
"walnuts",
"almonds"
], ],
"misc": "misc":
[ [
@ -90,6 +91,8 @@
"highprio": "highprio":
[ [
"garlic", "garlic",
"onions" "onions",
"chives",
"parsley"
] ]
} }

View File

@ -156,7 +156,7 @@ int main(int argc, char *argv[])
if (dice() > 1) if (dice() > 1)
toot += " and " + get_ingredient(highprio); toot += " and " + get_ingredient(highprio);
toot += ",\nand plenty oil.\n\nHappy cooking! 🍲\n\n#bot"; toot += ",\nand plenty oil. Salt to taste.\n\nHappy cooking! 🍲\n\n#bot";
string answer; string answer;