Example #1
0
 public void Wear()
 {
     Worn = true;
     if (ItemType.ContainsKey(ItemsType.CONTAINER))
     {
         Weight = CurrentWeight - (CurrentWeight * ReduceCarryWeightBy);
     }
     Save();
     OnWorn(new ItemEventArgs(ItemEvent.WEAR, this.Id));
 }