This commit is contained in:
skeletable 2022-10-02 00:48:19 +02:00
parent b91bcd202b
commit aa7c3791ef
1 changed files with 8 additions and 1 deletions

View File

@ -1135,7 +1135,14 @@ func messageCreate(s *discordgo.Session, m *discordgo.MessageCreate) {
}
if strings.HasPrefix(m.Content, "pp!radma") {
s.ChannelMessageSend(m.ChannelID, "https://cdn.discordapp.com/attachments/946859404819587162/946897683908542494/P10213-191951-1.jpg")
radmeons := []string{
"https://cdn.discordapp.com/attachments/946859404819587162/946897683908542494/P10213-191951-1.jpg",
"https://cdn.discordapp.com/attachments/946459086554275883/1025901158335774800/radmaAmberTurd.jpg",
"https://cdn.discordapp.com/attachments/946459086554275883/1025901158658748519/radmaSpecialOPs.jpg",
"https://cdn.discordapp.com/attachments/946459086554275883/1025901159053021225/radmaWonka.jpg",
"https://cdn.discordapp.com/attachments/946459086554275883/1025901159313047552/Radma_rectal.png",
}
s.ChannelMessageSend(m.ChannelID, radmeons[rand.Intn(len(radmeons))])
}
if strings.HasPrefix(m.Content, "pp!fortune") {