public void FinalizeDataHolder()
 {
     if (this.MinAmount < 1)
     {
         this.MinAmount = 1;
     }
     if (this.MinAmount > this.MaxAmount)
     {
         this.MaxAmount = this.MinAmount;
     }
     if ((double)this.DropChance < 0.0)
     {
         this.DropChance = -this.DropChance;
     }
     Asda2LootMgr.AddEntry(this);
 }
        public void FinalizeDataHolder()
        {
            if (MinAmount < 1)
            {
                MinAmount = 1;
            }

            if (MinAmount > MaxAmount)
            {
                MaxAmount = MinAmount;
            }

            if (DropChance < 0)
            {
                DropChance = -DropChance;
            }

            Asda2LootMgr.AddEntry(this);
        }