mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Consistent naming of random seed
This commit is contained in:
parent
225e1a52ba
commit
e4f3d334ed
2 changed files with 2 additions and 2 deletions
|
@ -37,7 +37,7 @@ module Spectator
|
||||||
@fail_blank = builder.fail_blank?
|
@fail_blank = builder.fail_blank?
|
||||||
@dry_run = builder.dry_run?
|
@dry_run = builder.dry_run?
|
||||||
@randomize = builder.randomize?
|
@randomize = builder.randomize?
|
||||||
@random_seed = builder.seed
|
@random_seed = builder.random_seed
|
||||||
@profile = builder.profile?
|
@profile = builder.profile?
|
||||||
@example_filter = builder.example_filter
|
@example_filter = builder.example_filter
|
||||||
end
|
end
|
||||||
|
|
|
@ -14,7 +14,7 @@ module Spectator
|
||||||
end
|
end
|
||||||
|
|
||||||
# Seed used for random number generation.
|
# Seed used for random number generation.
|
||||||
property seed : UInt64 = Random.rand(UInt64)
|
property random_seed : UInt64 = Random.rand(UInt64)
|
||||||
|
|
||||||
@primary_formatter : Formatting::Formatter?
|
@primary_formatter : Formatting::Formatter?
|
||||||
@additional_formatters = [] of Formatting::Formatter
|
@additional_formatters = [] of Formatting::Formatter
|
||||||
|
|
Loading…
Reference in a new issue