~kris/9p

glenda

5cd758a7764fb9c7334e4af007badec3d7b34c12 — Sean Hinchee 8 years ago 1345e8e
"wine_glass"
2 files changed, 2 insertions(+), 2 deletions(-)

M mux.go
M x/mux/misc.go
M mux.go => mux.go +1 -1
@@ 44,7 44,7 @@ func init() {
	
	Router.Route("whiskey", ":tumbler_glass:", Router.Whiskey)
	
	Router.Route("wine", ":wine", Router.Wine)
	Router.Route("wine", ":wine_glass", Router.Wine)
	
	Router.Route("remindme", "Set a reminder for a given time interval ([int][hmsd] [reminder]).", Router.RemindMe)
}

M x/mux/misc.go => x/mux/misc.go +1 -1
@@ 74,7 74,7 @@ func (m *Mux) Whiskey(ds *discordgo.Session, dm *discordgo.Message, ctx *Context
// Wine, dude.
func (m *Mux) Wine(ds *discordgo.Session, dm *discordgo.Message, ctx *Context) {
	resp := ""
	resp += ":wine:"
	resp += ":wine_glass:"
	resp += "\n"

	ds.ChannelMessageSend(dm.ChannelID, resp)