Monospace in some commands

This commit is contained in:
Lucas Gabriel 2024-06-02 15:18:27 +00:00
parent 614eed0102
commit 38c585af36
3 changed files with 7 additions and 7 deletions

View file

@ -7,7 +7,7 @@ module.exports = function(bot, msg) {
const randomValue = getRandomInt(11);
const message = `*Generated value:* ${randomValue}`;
const message = `*Generated value:* \`${randomValue}\``;
bot.sendMessage(chatId, message, { parse_mode: 'Markdown' })
.catch(error => console.error('WARN: Message cannot be sent: ', error));