Improved channel handling to allow /QUREY use of the bot

This commit is contained in:
Chris Sexton 2012-08-17 23:11:36 -04:00
parent 5b3784a9ed
commit 31d52248d7
2 changed files with 7 additions and 1 deletions

View File

@ -91,6 +91,9 @@ func (b *Bot) MsgRecieved(conn *irc.Conn, line *irc.Line) {
user := b.checkuser(line.Nick)
channel := line.Args[0]
if channel == conn.Me.Nick {
channel = line.Nick
}
message := line.Args[1]
iscmd := false
iscmd, message = b.isCmd(message)

View File

@ -137,7 +137,10 @@ func (p *BeersPlugin) LoadData() {
// Help responds to help requests. Every plugin must implement a help function.
func (p *BeersPlugin) Help(channel string, parts []string) {
p.Bot.SendMessage(channel, "Sorry, Beers does not do a goddamn thing.")
msg := "Beers: imbibe by using either beers +=,=,++ or with the !imbibe/drink " +
"commands. I'll keep a count of how many beers you've had and then if you want " +
"to reset, just !puke it all up!"
p.Bot.SendMessage(channel, msg)
}
func (p *BeersPlugin) setBeers(user *bot.User, amount int) {