1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-18 01:30:05 +08:00

Do not use unseeded RNG in replay analysis container test

It's just bad form.
This commit is contained in:
Bartłomiej Dach
2025-05-22 12:52:40 +02:00
Unverified
parent c632383ccb
commit d7efce5378
@@ -87,7 +87,7 @@ namespace osu.Game.Rulesets.Osu.Tests
private Replay fabricateReplay()
{
var frames = new List<ReplayFrame>();
var random = new Random();
var random = new Random(20250522);
int posX = 250;
int posY = 250;