Skip to content

Commit

Permalink
An appeasement to the linter gods
Browse files Browse the repository at this point in the history
  • Loading branch information
shrianshChari committed Mar 23, 2024
1 parent 5d58d59 commit dabde55
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions calc/src/mechanics/gen789.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ import {
isQPActive,
getStabMod,
getStellarStabMod,
checkWindRider
checkWindRider,
} from './util';

export function calculateSMSSSV(
Expand Down Expand Up @@ -84,8 +84,8 @@ export function calculateSMSSSV(
checkIntrepidSword(attacker, gen);
checkIntrepidSword(defender, gen);

checkWindRider(attacker, field.attackerSide)
checkWindRider(defender, field.defenderSide)
checkWindRider(attacker, field.attackerSide);
checkWindRider(defender, field.defenderSide);

if (move.named('Meteor Beam', 'Electro Shot')) {
attacker.boosts.spa +=
Expand Down

0 comments on commit dabde55

Please sign in to comment.