reduce spawn rate

This commit is contained in:
skeletable 2022-10-13 16:20:23 +02:00
parent cc18f7f9d9
commit 1773b5c416
1 changed files with 1 additions and 1 deletions

View File

@ -788,7 +788,7 @@ func messageCreate(s *discordgo.Session, m *discordgo.MessageCreate) {
if m.ChannelID == "946459086554275883" {
rand.Seed(time.Now().Unix())
if rand.Intn(100) < 4 {
if rand.Intn(100) < 3 {
candy(s, m.ChannelID, "")
}
}