diff --git a/RLBotCS/Main.cs b/RLBotCS/Main.cs index e06296e..0af77f8 100644 --- a/RLBotCS/Main.cs +++ b/RLBotCS/Main.cs @@ -10,7 +10,7 @@ if (args.Length > 0 && args[0] == "--version") { Console.WriteLine( - "RLBotServer v5.0.0-rc.1\n" + "RLBotServer v5.0.0-rc.2\n" + $"Bridge {BridgeVersion.Version}\n" + "@ https://www.rlbot.org & https://github.com/RLBot/core" ); diff --git a/RLBotCS/Server/FlatBuffersSession.cs b/RLBotCS/Server/FlatBuffersSession.cs index 48d0614..15fdc49 100644 --- a/RLBotCS/Server/FlatBuffersSession.cs +++ b/RLBotCS/Server/FlatBuffersSession.cs @@ -429,9 +429,21 @@ private async Task HandleInternalMessages() if (player.Index == m.Status.Index) { _renderingIsEnabled = m.Status.Status; + SendPayloadToClient( + CoreMessageUnion.FromRenderingStatus( + new RenderingStatusT() + { + Index = player.Index, + IsBot = m.Status.IsBot, + Status = m.Status.Status, + } + ) + ); + break; } } + break; case SessionMessage.PingResponse m: SendPayloadToClient(