diff --git a/bot.js b/bot.js index e9cb6ad..f3c9d58 100644 --- a/bot.js +++ b/bot.js @@ -36,7 +36,6 @@ bot.hears( /^\/kills[ =](.+)$/, ctx => getAllKills(ctx.match[1]) .then(allKills => { - console.log(allKills) if (!allKills) { ctx.reply('Не найдено') return @@ -44,7 +43,7 @@ bot.hears( ctx.replyWithMarkdown( formattedStringTable( allKills.map(kills => ({ - 'монстр': getEntityName(kills.entityName), + 'монстр': getEntityName(kills), 'убийств': kills.killCount })) )