brh55/botkit-discord

'ambient' not working

bmoren opened this issue · 0 comments

using the ambient setting on .hears() produces no results.

demo code (adapted from the glitch starterkit)

  controller.hears('!test', ['ambient'], (bot, message) => {
    
    let response = "test success!"
        bot.reply(message, response);

  });