From 727060f6dfd8872b03b3e8c84b6ea052e6d57b24 Mon Sep 17 00:00:00 2001 From: Virx Date: Tue, 23 Sep 2025 00:13:40 -0400 Subject: [PATCH 1/2] Increment ticksSinceMapLoad for all ticks --- RLBotCS/Server/BridgeHandler.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/RLBotCS/Server/BridgeHandler.cs b/RLBotCS/Server/BridgeHandler.cs index 8260b52..c69ad31 100644 --- a/RLBotCS/Server/BridgeHandler.cs +++ b/RLBotCS/Server/BridgeHandler.cs @@ -88,13 +88,12 @@ private async Task HandleServer() float deltaTime = _context.GameState.SecondsElapsed - prevTime; bool timeAdvanced = deltaTime > 0.001; if (timeAdvanced) - { _context.ticksSkipped = 0; - _context.ticksSinceMapLoad += 1; - } else _context.ticksSkipped++; + _context.ticksSinceMapLoad += 1; + if (timeAdvanced) _context.PerfMonitor.AddRLBotSample(deltaTime); From 48672d502083d41fb42f22260a3d7d1407db8b5c Mon Sep 17 00:00:00 2001 From: Virx Date: Tue, 23 Sep 2025 16:38:06 -0400 Subject: [PATCH 2/2] Bump version --- RLBotCS/Main.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RLBotCS/Main.cs b/RLBotCS/Main.cs index 46c2765..88cbef7 100644 --- a/RLBotCS/Main.cs +++ b/RLBotCS/Main.cs @@ -10,7 +10,7 @@ if (args.Length > 0 && args[0] == "--version") { Console.WriteLine( - "RLBotServer v5.beta.7.7\n" + "RLBotServer v5.beta.7.8\n" + $"Bridge {BridgeVersion.Version}\n" + "@ https://www.rlbot.org & https://github.com/RLBot/core" );