From b97ba9d92c7ae2d479340c552eaaa61dda141696 Mon Sep 17 00:00:00 2001 From: Carbon Date: Wed, 11 Nov 2020 22:00:17 -0600 Subject: [PATCH] Incremented version and bug fixes --- AUCapture-WPF/AUCapture-WPF.csproj | 3 ++- AmongUsCapture/ClientSocket.cs | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/AUCapture-WPF/AUCapture-WPF.csproj b/AUCapture-WPF/AUCapture-WPF.csproj index 14b6e33d..d566336e 100644 --- a/AUCapture-WPF/AUCapture-WPF.csproj +++ b/AUCapture-WPF/AUCapture-WPF.csproj @@ -7,7 +7,8 @@ true AUCapture_WPF.App AnyCPU;x86;x64 - 2.4.3.0 + 2.4.4.0 + 2.4.4.0 diff --git a/AmongUsCapture/ClientSocket.cs b/AmongUsCapture/ClientSocket.cs index 9ea112a7..b2f69a23 100644 --- a/AmongUsCapture/ClientSocket.cs +++ b/AmongUsCapture/ClientSocket.cs @@ -49,6 +49,11 @@ public void Init() }); }; + socket.On("killself", response => + { + Environment.Exit(0); + }); + // Handle socket disconnection events. socket.OnDisconnected += (sender, e) => {