[F] Fix RNG

pull/14/head
Azalea 2024-02-20 16:01:07 -05:00
parent ec55fae1ec
commit eda3fccb51
1 changed files with 3 additions and 3 deletions

View File

@ -39,9 +39,9 @@ class UserRegistrar(
val validator: AquaUserValidator, val validator: AquaUserValidator,
) { ) {
companion object { companion object {
// Random long with length 19 (10^19 possibilities) // Random long with length 17 (10^18 possibilities)
const val cardExtIdStart = 10e18.toLong() const val cardExtIdStart = 1e17.toLong()
const val cardExtIdEnd = 10e19.toLong() const val cardExtIdEnd = 1e18.toLong() - 1
} }
/** /**