fix(BasicAuthenticator): Use correct type in HashSet

This commit is contained in:
MrGadget 2024-09-24 02:55:55 -04:00
parent 1a47714ea2
commit a13a00215f

View File

@ -16,7 +16,7 @@ public class BasicAuthenticator : NetworkAuthenticator
public string username;
public string password;
readonly HashSet<NetworkConnection> connectionsPendingDisconnect = new HashSet<NetworkConnection>();
readonly HashSet<NetworkConnectionToClient> connectionsPendingDisconnect = new HashSet<NetworkConnectionToClient>();
#region Messages