From 78351c1dbec83f74aeadf90dc17d4e7c6fcfe49c Mon Sep 17 00:00:00 2001 From: miniduikboot Date: Sun, 28 Aug 2022 17:04:35 +0200 Subject: [PATCH] Add Chat Language to game listings (#491) This was added to the in 6.23 patch --- src/Impostor.Api/Net/Messages/S2C/Message16GetGameListS2C.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Impostor.Api/Net/Messages/S2C/Message16GetGameListS2C.cs b/src/Impostor.Api/Net/Messages/S2C/Message16GetGameListS2C.cs index 354f402..584673c 100644 --- a/src/Impostor.Api/Net/Messages/S2C/Message16GetGameListS2C.cs +++ b/src/Impostor.Api/Net/Messages/S2C/Message16GetGameListS2C.cs @@ -28,6 +28,7 @@ namespace Impostor.Api.Net.Messages.S2C var platform = game.Host?.Client.PlatformSpecificData; writer.Write((byte)(platform?.Platform ?? 0)); writer.Write(platform?.PlatformName ?? string.Empty); + writer.Write((uint)game.Options.Keywords); writer.EndMessage(); } -- 2.39.5