Example #1
0
 internal static bool InvokeDropLoot(object npc)
 {
     if (DropLoot != null)
     {
         var args = new DropLootEventArgs((NPC)npc);
         DropLoot(null, args);
         return(args.Handled);
     }
     return(false);
 }
Example #2
0
 internal static bool InvokeDropLoot(object npc)
 {
     if (DropLoot != null)
     {
         var args = new DropLootEventArgs((NPC)npc);
         DropLoot(null, args);
         return args.Handled;
     }
     return false;
 }