diff --git a/bot.js b/bot.js index 9191426..d5ca8d3 100644 --- a/bot.js +++ b/bot.js @@ -46,5 +46,11 @@ client.on("message", message => { getWeather(callsign, message); return; } + if (command === "help") { + message.channel.send( + "**Currently available commands**:\n`?loc callsign` to retrieve location information.\n`?wx callsign` to retrieve weather data." + ); + return; + } }); client.login(config.token);