From ed09ca153ca9ad4f1d660a16db00e3a1c8ca4816 Mon Sep 17 00:00:00 2001 From: pocketjawa Date: Tue, 6 Aug 2019 21:49:49 -0400 Subject: [PATCH] Added kill alias to restart command --- pocketbot.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pocketbot.go b/pocketbot.go index e755ec1..3ddd08f 100644 --- a/pocketbot.go +++ b/pocketbot.go @@ -58,6 +58,7 @@ func main() { Router.Route("mixes", "Post the link to my fire mixtapes!", postMixes) Router.Route("xkcd", "Post a specific, random, or the latest XKCD comic", getXKCD) Router.Route("restart", "Restart the bot.", restartBot) + Router.Route("kill", "Restart the bot.", restartBot) //Open a connection to Discord err = Session.Open()