From: miniduikboot Date: Sun, 28 Aug 2022 15:04:35 +0000 (+0200) Subject: Add Chat Language to game listings (#491) X-Git-Tag: v1.7.2~7 X-Git-Url: https://git.deb.at/?a=commitdiff_plain;h=78351c1dbec83f74aeadf90dc17d4e7c6fcfe49c;p=rhonda%2Fimpostor.git Add Chat Language to game listings (#491) This was added to the in 6.23 patch --- 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(); }