Skip to content

Commit

Permalink
includes all wand enums on generation
Browse files Browse the repository at this point in the history
  • Loading branch information
Bohicatv authored Feb 4, 2025
1 parent de12f8c commit 349db29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Projects/UOContent/Items/Wands/BaseWand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public BaseWand(WandEffect effect, int minCharges, int maxCharges) : base(0xDF2
_charges = Utility.RandomMinMax(minCharges, maxCharges);
Attributes.SpellChanneling = 1;
Attributes.CastSpeed = -1;
WeaponAttributes.MageWeapon = Utility.RandomMinMax(1, 10);
WeaponAttributes.MageWeapon = Utility.Random(11);
Resource = CraftResource.None;
}

Expand Down

0 comments on commit 349db29

Please sign in to comment.