botkit-discord icon indicating copy to clipboard operation
botkit-discord copied to clipboard

'ambient' not working

Open bmoren opened this issue 1 year ago • 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);

  });

bmoren avatar Feb 01 '23 01:02 bmoren