From c742615b86766dd06cd560b6f083d65cce91a52b Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Sat, 5 Aug 2023 18:41:09 +1200 Subject: [PATCH] Add missing CleanReturnAsync() to Content.Benchmarks (#18691) --- Content.Benchmarks/Program.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Benchmarks/Program.cs b/Content.Benchmarks/Program.cs index f5876307a5..08724064a6 100644 --- a/Content.Benchmarks/Program.cs +++ b/Content.Benchmarks/Program.cs @@ -24,6 +24,7 @@ namespace Content.Benchmarks var pair = await PoolManager.GetServerClient(); var gameMaps = pair.Pair.Server.ResolveDependency().EnumeratePrototypes().ToList(); MapLoadBenchmark.MapsSource = gameMaps.Select(x => x.ID); + await pair.CleanReturnAsync(); #if DEBUG Console.ForegroundColor = ConsoleColor.Red;