From d0b4ce045121c4e4303c5a44bdeb977cbbefe119 Mon Sep 17 00:00:00 2001 From: Garry Newman Date: Fri, 10 May 2019 10:10:03 +0100 Subject: [PATCH] Fixed OnActiveBeaconsUpdated not getting called --- Facepunch.Steamworks/SteamParties.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Facepunch.Steamworks/SteamParties.cs b/Facepunch.Steamworks/SteamParties.cs index c31b904..d2555c1 100644 --- a/Facepunch.Steamworks/SteamParties.cs +++ b/Facepunch.Steamworks/SteamParties.cs @@ -31,7 +31,7 @@ internal static void Shutdown() internal static void InstallEvents() { AvailableBeaconLocationsUpdated_t.Install( x => OnBeaconLocationsUpdated?.Invoke() ); - ActiveBeaconsUpdated_t.Install( x => OnBeaconLocationsUpdated?.Invoke() ); + ActiveBeaconsUpdated_t.Install( x => OnActiveBeaconsUpdated?.Invoke() ); } ///