zydra why

This commit is contained in:
Jill 2023-05-04 15:04:47 +03:00
parent 2f06489e13
commit 2e18e3d27a
Signed by: oat
GPG Key ID: 33489AA58A955108
1 changed files with 6 additions and 1 deletions

View File

@ -129,7 +129,12 @@ module.exports = {
}
const endTemplate = END_TEMPLATES[Math.floor(Math.random() * END_TEMPLATES.length)];
await m.reply(endTemplate + '\n\n' + sentences.map(sentence => '- “' + sentence.join(' ') + '”').join('\n') + '\n\nThank you for participating :)');
await m.reply({
content: endTemplate + '\n\n' + sentences.map(sentence => '- “' + sentence.join(' ') + '”').join('\n') + '\n\nThank you for participating :)',
allowedMentions: {
parse: ['users']
}
});
});
}
};