diff --git a/Projects/Server/Random.cs b/Projects/Server/Random.cs index 7a92fc131..80409a56e 100644 --- a/Projects/Server/Random.cs +++ b/Projects/Server/Random.cs @@ -174,7 +174,7 @@ namespace Server lock (_sync) { CheckSwap(c); - _Working.CopyTo(b); + _Working.AsSpan(0, c).CopyTo(b); _Index += c; } }