FFS I cannot code for shit

master
guilevi 2021-11-05 02:36:07 +01:00
parent 9ba6185335
commit 604fe3fd10
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ module.exports = function (bot, api) {
} else { } else {
bot.currentWBW += args[1] + ' '; bot.currentWBW += args[1] + ' ';
api.respond(message, printf(api.strings.WBW_NEW_WORD)) api.respond(message, printf(api.strings.WBW_NEW_WORD))
api.speak(bot.currentWBW) api.speak(message.member.voice.channel, bot.currentWBW)
await api.db.run('update BotState set value=? where key="last_wbw"', message.author.id); await api.db.run('update BotState set value=? where key="last_wbw"', message.author.id);
} }
} }