Skip to content

Commit

Permalink
Merge pull request #63 from hillerstorm/fix_instant_poison
Browse files Browse the repository at this point in the history
[Rogue] Fix instant poison
  • Loading branch information
sanguinerarogue authored Dec 31, 2024
2 parents 579e674 + 5fcbe26 commit 782e362
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/core/components/inputs/rogue_imbues.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ import { ConsumableInputConfig } from './consumables';

// Rogue Imbues
export const InstantPoisonWeaponImbue: ConsumableInputConfig<WeaponImbue> = {
actionId: () => ActionId.fromItemId(8985),
actionId: () => ActionId.fromItemId(8928),
value: WeaponImbue.InstantPoison,
showWhen: player => player.getClass() == Class.ClassRogue,
};

export const DeadlyPoisonWeaponImbue: ConsumableInputConfig<WeaponImbue> = {
actionId: () => ActionId.fromItemId(20844),
actionId: () => ActionId.fromItemId(8985),
value: WeaponImbue.DeadlyPoison,
showWhen: player => player.getClass() == Class.ClassRogue,
};
Expand Down

0 comments on commit 782e362

Please sign in to comment.