Skip to content

Commit

Permalink
Adjusts
Browse files Browse the repository at this point in the history
  • Loading branch information
kamronbatman committed Feb 6, 2025
1 parent 0ba99d9 commit 7bf02a3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ public BaseInstrument(int itemID, int wellSound, int badlySound) : base(itemID)
_usesRemaining = Utility.RandomMinMax(InitMinUses, InitMaxUses);
}

public virtual int InitMinUses => Core.UOR ? 350 : 100;
public virtual int InitMaxUses => Core.UOR ? 450 : 200;
public virtual int InitMinUses => Core.UOR ? 350 : 50;
public virtual int InitMaxUses => Core.UOR ? 450 : 100;

public virtual TimeSpan ChargeReplenishRate => TimeSpan.FromMinutes(5.0);

Expand Down

0 comments on commit 7bf02a3

Please sign in to comment.