Ejemplo n.º 1
0
 public TailorsCraftsmanSatchel()
     : base()
 {
     if (this.Items.Count < 2 && 0.5 > Utility.RandomDouble())
     {
         this.DropItem(Reward.TailorRecipe());
     }
 }
Ejemplo n.º 2
0
        public TailorsCraftsmanSatchel()
            : base()
        {
            if (Items.Count < 2)
            {
                var recipe = Reward.TailorRecipe();

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