Skip to content

Commit

Permalink
2.1.1
Browse files Browse the repository at this point in the history
- Added deinitializer to FishyFacepunch.
  • Loading branch information
FirstGearGames committed Oct 23, 2022
1 parent d9bf84e commit 2630fce
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
3 changes: 3 additions & 0 deletions FishNet/Plugins/FishyFacepunch/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2.1.1
- Added deinitializer to FishyFacepunch.

2.1.0
- Fixed ClientId 32767 not found error when being used with Multipass.

Expand Down
7 changes: 6 additions & 1 deletion FishNet/Plugins/FishyFacepunch/FishyFacepunch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ namespace FishyFacepunch
{
public class FishyFacepunch : Transport
{
~FishyFacepunch()
{
Shutdown();
}

#region Public.
[System.NonSerialized]
public ulong LocalUserSteamID;
Expand Down Expand Up @@ -131,7 +136,7 @@ private void InitializeRelayNetworkAccess()
SteamNetworkingUtils.InitRelayNetworkAccess();
LocalUserSteamID = Steamworks.SteamClient.SteamId.Value;
#endif
}
}
#endregion

#region ConnectionStates.
Expand Down
2 changes: 1 addition & 1 deletion FishNet/Plugins/FishyFacepunch/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.0
2.1.1

0 comments on commit 2630fce

Please sign in to comment.