Skip to content

Commit

Permalink
fix UI value for brilliant wizard oil
Browse files Browse the repository at this point in the history
  • Loading branch information
kayla-glick committed Dec 5, 2024
1 parent 9eeffc6 commit e2fef2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/core/components/inputs/consumables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1053,7 +1053,7 @@ export const EnchantedRepellent = (slot: ItemSlot): ConsumableInputConfig<Weapon
export const BrilliantWizardOil = (slot: ItemSlot): ConsumableInputConfig<WeaponImbue> => {
return {
actionId: player => player.getMatchingItemActionId([{ id: 20749, minLevel: 45 }]),
value: WeaponImbue.EnchantedRepellent,
value: WeaponImbue.BrilliantWizardOil,
showWhen: player => {
const weapon = player.getEquippedItem(slot);
return !weapon || isWeapon(weapon.item.weaponType);
Expand Down

0 comments on commit e2fef2d

Please sign in to comment.