mirror of
https://github.com/MewoLab/AquaDX.git
synced 2026-02-10 16:27:28 +08:00
[F] Fix RNG
This commit is contained in:
@@ -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
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user