Server.Mobiles.BaseCreature.OnDragDrop C# (CSharp) Method

OnDragDrop() public method

public OnDragDrop ( Mobile from, Item dropped ) : bool
from Mobile
dropped Item
return bool
        public override bool OnDragDrop( Mobile from, Item dropped )
        {
            if ( CheckFeed( from, dropped ) )
                return true;
            else if ( CheckGold( from, dropped ) )
                return true;

            return base.OnDragDrop( from, dropped );
        }
BaseCreature