howdyai / botkit-starter-web

Botkit Anywhere - a starter kit for building a bot that lives in your website or app
https://botkit.ai
MIT License
113 stars 75 forks source link

How to build skills documentation with faulty example #54

Closed Andr3s4n closed 5 years ago

Andr3s4n commented 5 years ago

In this readme file How to build custom skill modules for Botkit, the example code crashes:

controller.hears('help', function(bot, message) {
  bot.reply(message, 'Need help? I am here!');
});

It should be fixed with:

controller.hears('help', 'message_received', function(bot, message) {
  bot.reply(message, 'Need help? I am here!');
});
Naktibalda commented 5 years ago

Please edit the file and raise a pull request.

benbrown commented 5 years ago

good catch

benbrown commented 5 years ago

Fixed! Thank you.