Small typo
This commit is contained in:
parent
afa6ea9339
commit
3d3f100fc0
16
index.js
16
index.js
|
@ -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})
|
||||||
|
|
Loading…
Reference in New Issue