ACR_ServerCommunicator.ACR_ServerCommunicator.DeletePlayerState C# (CSharp) Method

DeletePlayerState() private method

Remove the player state object for an outgoing PC.
private DeletePlayerState ( uint PlayerObjectId ) : void
PlayerObjectId uint Supplies the PC object id to delete /// the corresponding state object for.
return void
        private void DeletePlayerState(uint PlayerObjectId)
        {
            DeleteLocalInt(PlayerObjectId, "chatselect_expanded");
            PlayerStateTable.Remove(PlayerObjectId);
        }
ACR_ServerCommunicator