fCraft.SecurityController.ResetExcludedList C# (CSharp) Method

ResetExcludedList() public method

Clears the list of specifically excluded players.
public ResetExcludedList ( ) : void
return void
        public void ResetExcludedList()
        {
            lock ( locker ) {
                excludedPlayers.Clear();
                UpdatePlayerListCache();
            }
        }