diff --git a/lorebot/lorebot.go b/lorebot/lorebot.go index 9547ef8..dea0a11 100644 --- a/lorebot/lorebot.go +++ b/lorebot/lorebot.go @@ -311,6 +311,9 @@ func dubsHandler(s *discordgo.Session, m *discordgo.MessageCreate, redisClient * return } + // roll a number + rollHandler(s, m) + // pick a random one rand.Seed(time.Now().UnixNano()) rngDubs := fmt.Sprint(command[rand.Intn(len(command))]) @@ -327,7 +330,6 @@ func dubsHandler(s *discordgo.Session, m *discordgo.MessageCreate, redisClient * //} else { // rollhandler(rtm, ev) //} - rollHandler(s, m) } func lunchHandler(s *discordgo.Session, m *discordgo.MessageCreate, redisClient *redis.Client) {