protected override void Hit()
 {
     try
     {
         MrzUtils.ShowNotificationDebug("AddItems::AddItemsFuzzyOrLoot");
         if (_holdersInventory != null && _holdersInventory.AddItemsFuzzyOrLoot(Definition.IdToAdd, Definition.AmountToAdd))
         {
             UpdateDurability(-1);
         }
         else if (Holder == MySession.Static.PlayerEntity)
         {
             InventoryFullNotification.Show();
         }
     }
     catch (Exception e)
     {
         MrzUtils.ShowNotificationDebug(e.Message);
     }
 }