mirror-nourybot/pkg/commands/coinflip.go

18 lines
322 B
Go
Raw Normal View History

2021-10-19 23:27:55 +02:00
package commands
import (
"github.com/lyx0/nourybot/cmd/bot"
"github.com/lyx0/nourybot/pkg/utils"
)
2021-10-31 14:57:21 +01:00
// Coinflip responds with Heads or Tails.
2021-10-19 23:27:55 +02:00
func Coinflip(channel string, nb *bot.Bot) {
result := utils.GenerateRandomNumber(2)
if result == 1 {
nb.Send(channel, "Heads")
} else {
nb.Send(channel, "Tails")
}
}