diff --git a/CMakeLists.txt b/CMakeLists.txt index 7d8f8a9..d5e9e60 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required (VERSION 3.7) include(GNUInstallDirs) project (soupbot - VERSION 0.2.1 + VERSION 0.2.2 LANGUAGES CXX ) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14 -Wall") diff --git a/ingredients.json b/ingredients.json index 992e15e..ba9fc1a 100644 --- a/ingredients.json +++ b/ingredients.json @@ -50,7 +50,6 @@ "sugar", "soy sauce", "chilli peppers", - "chives", "basil", "marjoram", "rosemary", @@ -59,8 +58,7 @@ "allspice", "cumin", "curcuma", - "coriander", - "parsley" + "coriander" ], "fruits": [ @@ -76,7 +74,10 @@ "strawberries", "blackberries", "blueberries", - "raspberries" + "raspberries", + "peanuts", + "walnuts", + "almonds" ], "misc": [ @@ -90,6 +91,8 @@ "highprio": [ "garlic", - "onions" + "onions", + "chives", + "parsley" ] } diff --git a/src/soupbot.cpp b/src/soupbot.cpp index d0626bb..7cd177e 100644 --- a/src/soupbot.cpp +++ b/src/soupbot.cpp @@ -156,7 +156,7 @@ int main(int argc, char *argv[]) if (dice() > 1) 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;