public TinkersCraftsmanSatchel()
     : base()
 {
     if (this.Items.Count < 2 && 0.5 > Utility.RandomDouble())
     {
         this.DropItem(Reward.TinkerRecipe());
     }
 }
Esempio n. 2
0
        public TinkersCraftsmanSatchel()
            : base()
        {
            if (Items.Count < 2)
            {
                var recipe = Reward.TinkerRecipe();

                if (recipe != null)
                {
                    DropItem(recipe);
                }
            }
        }