fCraft.SecurityController.ResetIncludedList C# (CSharp) Method

ResetIncludedList() public method

Clears the list of specifically included players.
public ResetIncludedList ( ) : void
return void
        public void ResetIncludedList()
        {
            lock ( locker ) {
                includedPlayers.Clear();
                UpdatePlayerListCache();
            }
        }