]> git.deb.at Git - rhonda/impostor.git/commitdiff
Add Chat Language to game listings (#491)
authorminiduikboot <mini@duikbo.at>
Sun, 28 Aug 2022 15:04:35 +0000 (17:04 +0200)
committerGitHub <noreply@github.com>
Sun, 28 Aug 2022 15:04:35 +0000 (17:04 +0200)
This was added to the in 6.23 patch

src/Impostor.Api/Net/Messages/S2C/Message16GetGameListS2C.cs

index 354f4027aca979bf321fc889c82c910339a3e26b..584673c885a71e5bc353cf6116d50ee6a94dc7a0 100644 (file)
@@ -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();
             }