De-hashtagged soup

It could be very annoying to search for #soup and be overwhelmed with bot posts.
This commit is contained in:
tastytea 2018-06-20 17:22:15 +02:00
parent 92268eaf81
commit dbf5741fbf
Signed by: tastytea
GPG Key ID: 59346E0EA35C67E5
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -131,7 +131,7 @@ int main(int argc, char *argv[])
std::uniform_int_distribution<std::uint8_t> distribution(0, 3);
auto dice = std::bind(distribution, generator);
string toot = "Todays #soup is made of:\n\n";
string toot = "Todays soup is made of:\n\n";
toot += "1 part " + get_ingredient(vegetables);
if (dice() > 0)