mirror of
https://github.com/abocn/TelegramBot.git
synced 2025-03-11 13:19:57 +00:00
Fixed spacing in gay
This commit is contained in:
parent
009881efc2
commit
78625caf24
@ -1,24 +1,24 @@
|
|||||||
module.exports = function(bot, msg) {
|
module.exports = function (bot, msg) {
|
||||||
const chatId = msg.chat.id;
|
const chatId = msg.chat.id;
|
||||||
const userName = msg.from.first_name;
|
const userName = msg.from.first_name;
|
||||||
const userId = msg.from.id;
|
const userId = msg.from.id;
|
||||||
let isGay = "";
|
let isGay = "";
|
||||||
|
|
||||||
function getRandomInt(max) {
|
function getRandomInt(max) {
|
||||||
return Math.floor(Math.random() * max);
|
return Math.floor(Math.random() * max);
|
||||||
}
|
|
||||||
|
|
||||||
const randomValue = getRandomInt(2);
|
|
||||||
|
|
||||||
if (randomValue === 0) {
|
|
||||||
isGay = `${userName} is not gay.`;
|
|
||||||
} else {
|
|
||||||
isGay = `${userName} is a gay.`;
|
|
||||||
}
|
|
||||||
|
|
||||||
const message = `${isGay}`;
|
|
||||||
|
|
||||||
bot.sendMessage(chatId, message)
|
|
||||||
.catch(error => console.error('ERROR: Message cannot be sent:', error));
|
|
||||||
console.log(`INFO: /gay executed by ${userName}, ${userId}`)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const randomValue = getRandomInt(2);
|
||||||
|
|
||||||
|
if (randomValue === 0) {
|
||||||
|
isGay = `${userName} is not gay.`;
|
||||||
|
} else {
|
||||||
|
isGay = `${userName} is a gay.`;
|
||||||
|
}
|
||||||
|
|
||||||
|
const message = `${isGay}`;
|
||||||
|
|
||||||
|
bot.sendMessage(chatId, message)
|
||||||
|
.catch(error => console.error('ERROR: Message cannot be sent:', error));
|
||||||
|
console.log(`INFO: /gay executed by ${userName}, ${userId}`)
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user