From 2f83a132f2ed36e0a557d69b20f1b42788358fc2 Mon Sep 17 00:00:00 2001 From: Thijs Molendijk Date: Fri, 4 Dec 2020 13:15:56 +0100 Subject: [PATCH] Update client to latest Among Us version --- client/AmongUsClient.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/AmongUsClient.cs b/client/AmongUsClient.cs index d06367c..5db36ac 100644 --- a/client/AmongUsClient.cs +++ b/client/AmongUsClient.cs @@ -17,7 +17,7 @@ public class AmongUsClient { // Represents a handshake of the latest version with name set to "Impostor". private static readonly byte[] HANDSHAKE = - {0x80, 0xD9, 0x02, 0x03, 0x08, 0x49, 0x6D, 0x70, 0x6F, 0x73, 0x74, 0x6F, 0x72}; + {0x4A, 0xE2, 0x02, 0x03, 0x08, 0x49, 0x6D, 0x70, 0x6F, 0x73, 0x74, 0x6F, 0x72}; // The port to the Among Us matchmaker. private const ushort MATCHMAKER_PORT = 22023;