Skip to content

Commit

Permalink
Merge pull request #24 from AustinEast/fix/fishnet-4.5.0
Browse files Browse the repository at this point in the history
Fixes for FishNet 4.5.0
  • Loading branch information
ooonush authored Nov 3, 2024
2 parents 591ef0f + 7a0e60c commit 096c8d8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1773,7 +1773,7 @@ private Channel SelectSendChannel(NetworkPipeline pipeline)

#region Server

private LocalConnectionState m_ServerState;
private LocalConnectionState m_ServerState = LocalConnectionState.Stopped;
private int m_NextClientId = 1;
private readonly Dictionary<int, ulong> m_TransportIdToClientIdMap = new Dictionary<int, ulong>();
private readonly Dictionary<ulong, int> m_ClientIdToTransportIdMap = new Dictionary<ulong, int>();
Expand Down Expand Up @@ -1862,7 +1862,7 @@ private bool StopServer()

#region Client

private LocalConnectionState m_ClientState;
private LocalConnectionState m_ClientState = LocalConnectionState.Stopped;

private void SetClientConnectionState(LocalConnectionState state)
{
Expand Down

0 comments on commit 096c8d8

Please sign in to comment.