bot: disable fake bot features by default (ref #575)

This commit is contained in:
jeefo 2024-05-24 14:17:37 +03:00 committed by jeefo
commit b72f8a2ef9
9 changed files with 104 additions and 32 deletions

View file

@ -286,7 +286,7 @@ void BotSupport::checkWelcome () {
" http://www.botepidemic.com/podbot for Updates\n";
// it's should be send in very rare cases
const bool sendLegacyWelcome = rg.chance (2);
const bool sendLegacyWelcome = rg.chance (game.is (GameFlags::Legacy) ? 25 : 2);
if (!graphAuthor.startsWith (product.name)) {
authorStr.assignf ("Navigation Graph by: %s", graphAuthor);