1
0
mirror of synced 2025-02-06 22:34:26 +01:00

Fix Random() being assigned a fixed seed (#509)

This commit is contained in:
DragonRatTiger / リュウコ 2023-10-15 06:43:23 -04:00 committed by GitHub
parent 05f8752c1c
commit f4a1c6d26c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2933,7 +2933,7 @@ for (int i = 0; i < 3; i++) {
#endregion
#region [ Random ]
//---------------------
Random = new Random( (int) Timer.SystemTime );
Random = new Random();
//---------------------
#endregion
#region [ Stages initialisation ]