UwU
parent
e8aa115dfa
commit
2905b1698b
|
@ -206,3 +206,8 @@ func rollDice(s *discordgo.Session, m *discordgo.Message, ctx *mux.Context) {
|
|||
}
|
||||
s.ChannelMessageSend(m.ChannelID, resp)
|
||||
}
|
||||
|
||||
//Test command that says UwU
|
||||
func sayUwU(s *discordgo.Session, m *discordgo.Message, ctx *mux.Context) {
|
||||
s.ChannelMessageSend(m.ChannelID, "UwU *nuzzles*")
|
||||
}
|
||||
|
|
|
@ -70,6 +70,7 @@ func main() {
|
|||
Router.Route("sleep", "Something about sleeping...", goToSleep)
|
||||
Router.Route("setplaying", "Set the nowplaying message for the bot.", setNowPlaying)
|
||||
Router.Route("roll", "Roll some dice!", rollDice)
|
||||
Router.Route("uwu", "Say UwU", sayUwU)
|
||||
|
||||
//Open a connection to Discord
|
||||
err = Session.Open()
|
||||
|
|
Loading…
Reference in New Issue