mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Limit generated seed to < 100,000
This commit is contained in:
parent
1525317e2c
commit
b970abd334
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ module Spectator
|
|||
# Then call `#build` to create the final configuration.
|
||||
class Builder
|
||||
# Seed used for random number generation.
|
||||
property random_seed : UInt64 = Random.rand(UInt64)
|
||||
property random_seed : UInt64 = Random.rand(100000_u64)
|
||||
|
||||
# Toggles indicating how the test spec should execute.
|
||||
property run_flags = RunFlags::None
|
||||
|
|
Loading…
Reference in a new issue