Skip to content

Commit

Permalink
Update help messages
Browse files Browse the repository at this point in the history
  • Loading branch information
godwhoa committed Nov 5, 2018
1 parent 70cd4c3 commit cb1f763
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions plugins/core/core.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,11 @@ import (
"strings"
"time"

"github.com/spf13/viper"

"github.com/PuerkitoBio/goquery"
m "github.com/godwhoa/oodle/middleware"
"github.com/godwhoa/oodle/oodle"
u "github.com/godwhoa/oodle/utils"
"github.com/spf13/viper"
"mvdan.cc/xurls"
)

Expand Down Expand Up @@ -92,7 +91,7 @@ func List(bot oodle.Bot, sender oodle.Sender) oodle.Command {
return oodle.Command{
Prefix: ".",
Name: "list",
Description: "PMs you a list of all the commands",
Description: "List of all the commands",
Usage: ".list",
Fn: func(nick string, args []string) (reply string, err error) {
msg := "Commands: "
Expand All @@ -112,7 +111,7 @@ func Echo() oodle.Command {
return oodle.Command{
Prefix: "",
Name: botNick + "!",
Description: "Exclamates your nick back!",
Description: "Exclamates your nick back!",
Usage: botNick + "!",
Fn: func(nick string, args []string) (string, error) {
return as(nick + "!"), nil
Expand Down
2 changes: 1 addition & 1 deletion plugins/invite/invite.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func Invite(sender oodle.Sender, log *logrus.Logger, db *sqlx.DB) oodle.Command
return oodle.Command{
Prefix: ".",
Name: "invite",
Description: "Generates an random invite code.",
Description: "Generates a random invite code and PMs it.",
Usage: ".invite",
Fn: func(nick string, args []string) (string, error) {
token, err := uuid.NewV4()
Expand Down

0 comments on commit cb1f763

Please sign in to comment.