OpenSim.Region.CoreModules.Agent.Capabilities.CapabilitiesModule.DropChildSeed C# (CSharp) Méthode

DropChildSeed() public méthode

public DropChildSeed ( UUID agentID, ulong handle ) : void
agentID UUID
handle ulong
Résultat void
        public void DropChildSeed(UUID agentID, ulong handle)
        {
            Dictionary<ulong, string> seeds;
            if (childrenSeeds.TryGetValue(agentID, out seeds))
            {
                seeds.Remove(handle);
            }
        }