From 10f332331811d36e8bc74f2bd277a908be63f418 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frida=20Ku=CC=88lper?= Date: Fri, 17 Mar 2023 16:32:18 +0100 Subject: [PATCH] Fix OnNewLaunchParameters never getting called --- Facepunch.Steamworks/SteamApps.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Facepunch.Steamworks/SteamApps.cs b/Facepunch.Steamworks/SteamApps.cs index b2437f7..baad5fa 100644 --- a/Facepunch.Steamworks/SteamApps.cs +++ b/Facepunch.Steamworks/SteamApps.cs @@ -20,6 +20,8 @@ namespace Steamworks SetInterface( server, new ISteamApps( server ) ); if ( Interface.Self == IntPtr.Zero ) return false; + InstallEvents(); + return true; }