Skip to content

Commit

Permalink
Fix Bright Powder/Lax Incense accuracy modifier (smogon#7973)
Browse files Browse the repository at this point in the history
  • Loading branch information
Flethan authored and Quanyails committed May 12, 2021
1 parent c8e2cb9 commit fc77260
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data/items.ts
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ export const Items: {[itemid: string]: ItemData} = {
onModifyAccuracy(accuracy) {
if (typeof accuracy !== 'number') return;
this.debug('brightpowder - decreasing accuracy');
return this.chainModify([0x0F1C, 0x1000]);
return this.chainModify([0x0E66, 0x1000]);
},
num: 213,
gen: 2,
Expand Down Expand Up @@ -2800,7 +2800,7 @@ export const Items: {[itemid: string]: ItemData} = {
onModifyAccuracy(accuracy) {
if (typeof accuracy !== 'number') return;
this.debug('lax incense - decreasing accuracy');
return this.chainModify([0x0F1C, 0x1000]);
return this.chainModify([0x0E66, 0x1000]);
},
num: 255,
gen: 3,
Expand Down

0 comments on commit fc77260

Please sign in to comment.