Decrease example cards weight to prevent overflow when used with CD

This commit is contained in:
Anthony Wang 2022-04-21 12:19:39 -05:00
parent aa1f53c83e
commit a356cd0425
Signed by: a
GPG key ID: BC96B00AEC5F2D76

View file

@ -55,7 +55,7 @@ func main() {
fmt.Println(val)
}
_, err = db.Exec("INSERT INTO cards VALUES(?, ?, ?, ?)", i, 1<<(30-i/50), key, val)
_, err = db.Exec("INSERT INTO cards VALUES(?, ?, ?, ?)", i, 1<<(20-i/50), key, val)
i++
}
}