Exemplo n.º 1
0
 public override bool DropToItem(Mobile from, Item target, Point3D p, byte gridloc)
 {
     if (target is PlagueBackpack)
     {
         PlagueBeastLord PBL = target.RootParent as PlagueBeastLord;
         if (PBL != null)
         {
             PBL.Place_Gland(p, this, from);
         }
     }
     return(base.DropToItem(from, target, p, gridloc));
 }