mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 02:50:32 +00:00
fix(ChatAuthenticator): Use correct type in HashSet
This commit is contained in:
parent
682bba2509
commit
1a47714ea2
@ -12,7 +12,7 @@ namespace Mirror.Examples.Chat
|
||||
[AddComponentMenu("")]
|
||||
public class ChatAuthenticator : NetworkAuthenticator
|
||||
{
|
||||
readonly HashSet<NetworkConnection> connectionsPendingDisconnect = new HashSet<NetworkConnection>();
|
||||
readonly HashSet<NetworkConnectionToClient> connectionsPendingDisconnect = new HashSet<NetworkConnectionToClient>();
|
||||
internal static readonly HashSet<string> playerNames = new HashSet<string>();
|
||||
|
||||
[Header("Client Username")]
|
||||
|
Loading…
Reference in New Issue
Block a user