From 5f5c786ee34fdb5e61ee7954575f672eba4bd725 Mon Sep 17 00:00:00 2001 From: hgw Date: Mon, 2 Oct 2023 02:11:25 +0000 Subject: [PATCH] change set to opts in documentation --- README.md | 2 +- bot.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index de1f8da..89c11b4 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ This bot is not completed, expect bugs/crashes/errors. Use in production is disa - `m!feed [USER/FEED] [ENTRIES]` - Return the last x amount of entries from any RSS feed or your own saved feeds (if you have saved feeds) - `m!twitter [USER] [ENTRIES]` - Return the last x amount of tweets from a particular user. -- `m!set [CATEGORY] [OPTION] [VALUE]` - Control bot settings, see wiki for info on usage. +- `m!opt [CATEGORY] [OPTION] [VALUE]` - Control bot options, see wiki for info on usage. ## Deployment diff --git a/bot.js b/bot.js index dbf087b..322e740 100644 --- a/bot.js +++ b/bot.js @@ -45,7 +45,7 @@ async function help(chan, sub) { bot.say(chan, 'Mercury RSS Client - https://git.supernets.org/hogwart7/mercury') bot.say(chan, 'm!feed [USER/FEED] [ENTRIES] - Return the last x amount of entries from any RSS feed or your own saved feeds (if you have saved feeds)') bot.say(chan, "m!twitter [USER] [ENTRIES] - Return the last x amount of tweets from a particular user") - bot.say(chan, "m!set [CATEGORY] [OPTION] [VALUE] - Control bot settings, see wiki for info on usage.") + bot.say(chan, "m!opt [CATEGORY] [OPTION] [VALUE] - Control bot options, see wiki for info on usage.") } }