Small cleanup of gamestatusevent
This commit is contained in:
parent
1c9c8af2c5
commit
58e59a208f
1 changed files with 6 additions and 10 deletions
|
@ -27,17 +27,13 @@ public class GameStatusEvent : ICurrencyEvent
|
|||
|
||||
private readonly string _code;
|
||||
|
||||
private readonly char[] _sneakyGameStatusChars = Enumerable.Range(48, 10)
|
||||
.Concat(Enumerable.Range(65, 26))
|
||||
.Concat(Enumerable.Range(97, 26))
|
||||
.Select(x => (char)x)
|
||||
.ToArray();
|
||||
|
||||
private readonly object _stopLock = new();
|
||||
|
||||
private readonly object _potLock = new();
|
||||
private readonly IMessageSenderService _sender;
|
||||
|
||||
private static readonly EllieRandom _rng = new EllieRandom();
|
||||
|
||||
public GameStatusEvent(
|
||||
DiscordSocketClient client,
|
||||
ICurrencyService cs,
|
||||
|
@ -58,7 +54,7 @@ public class GameStatusEvent : ICurrencyEvent
|
|||
_opts = opt;
|
||||
_sender = sender;
|
||||
// generate code
|
||||
_code = new(_sneakyGameStatusChars.Shuffle().Take(5).ToArray());
|
||||
_code = new kwum(_rng.Next(1_000_000, 10_000_000)).ToString();
|
||||
|
||||
_t = new(OnTimerTick, null, Timeout.InfiniteTimeSpan, TimeSpan.FromSeconds(2));
|
||||
if (_opts.Hours > 0)
|
||||
|
|
Loading…
Reference in a new issue