Skip to content

Commit

Permalink
fix: it is not safe to modify this outside this class
Browse files Browse the repository at this point in the history
  • Loading branch information
paulpach committed Jan 2, 2020
1 parent 33493a0 commit bc7a961
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Mirror/Runtime/NetworkConnection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace Mirror
/// </remarks>
public abstract class NetworkConnection : IDisposable
{
public readonly HashSet<NetworkIdentity> visList = new HashSet<NetworkIdentity>();
readonly HashSet<NetworkIdentity> visList = new HashSet<NetworkIdentity>();

Dictionary<int, NetworkMessageDelegate> messageHandlers;

Expand Down

0 comments on commit bc7a961

Please sign in to comment.