예제 #1
0
        public void RemoveNotifierSupply(long entity_id, int property, long notifier_id)
        {
            Soul soul = (from s in _Souls.UpdateSet() where s.Id == entity_id select s).FirstOrDefault();

            if (soul == null)
            {
                return;
            }
            soul.DetachSupply(notifier_id);
        }