Small typo

This commit is contained in:
Vlad Rud 2021-08-16 20:33:49 +03:00
parent afa6ea9339
commit 3d3f100fc0
1 changed files with 8 additions and 8 deletions

View File

@ -586,7 +586,14 @@ async function processKarma(msg, match, settings={}) {
const timeDiff = (msgDate - fromDB.lastKarmaShot) / 1000 const timeDiff = (msgDate - fromDB.lastKarmaShot) / 1000
// Дальше страшная строка для поиска недавних карма-выстрелов одного юзера другому // Дальше страшная строка для поиска недавних карма-выстрелов одного юзера другому
const camraShot = CarmaShots.find((val, id) => val.from === from.id && val.to === to.id && (Date.now() - val.date) < chat.options.karmaCooldown) const carmaShot = CarmaShots.find((val, id) => val.from === from.id && val.to === to.id && (Date.now() - val.date) < chat.options.karmaCooldown)
if (carmaShot) {
let trigger = 'tooFast' + updateValue > 0 ? "Plus" : "Minus"
const messages = await Trigger.find({trigger:trigger, show: true})
const message = messages[getRandomInt(0, messages.length)].text
bot.sendMessage(chat_id, message, {reply_to_message_id: msg.message_id})
return
}
if(fromDB.karma < 0) { if(fromDB.karma < 0) {
bot.sendMessage(chat_id, `Тебе с такой маленькой кармой (${fromDB.karma}) нельзя менять её другим`, {reply_to_message_id: msg.message_id}) bot.sendMessage(chat_id, `Тебе с такой маленькой кармой (${fromDB.karma}) нельзя менять её другим`, {reply_to_message_id: msg.message_id})
return return
@ -598,13 +605,6 @@ async function processKarma(msg, match, settings={}) {
bot.sendMessage(chat_id, message, {reply_to_message_id: msg.message_id}) bot.sendMessage(chat_id, message, {reply_to_message_id: msg.message_id})
return return
} }
if (carmaShot) {
let trigger = 'tooFast' + updateValue > 0 ? "Plus" : "Minus"
const messages = await Trigger.find({trigger:trigger, show: true})
const message = messages[getRandomInt(0, messages.length)].text
bot.sendMessage(chat_id, message, {reply_to_message_id: msg.message_id})
return
}
/// TODO: Пока просто закомментим, потом если всё ок, надо удалить. /// TODO: Пока просто закомментим, потом если всё ок, надо удалить.
// if (timeDiff < chat.options.karmaCooldown){ // if (timeDiff < chat.options.karmaCooldown){
// const messages = await Trigger.find({trigger:'tooFast', show: true}) // const messages = await Trigger.find({trigger:'tooFast', show: true})