Skip to content

Commit

Permalink
Tooltips: Fix Low Kick BP in Gen 1/2 (#2186)
Browse files Browse the repository at this point in the history
  • Loading branch information
Karthik99999 authored Nov 16, 2023
1 parent 426656e commit f1a74eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/battle-tooltips.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1814,7 +1814,7 @@ class BattleTooltips {
}
}
// Moves which have base power changed according to weight
if (['lowkick', 'grassknot', 'heavyslam', 'heatcrash'].includes(move.id)) {
if (['lowkick', 'grassknot', 'heavyslam', 'heatcrash'].includes(move.id) && this.battle.gen > 2) {
let isGKLK = ['lowkick', 'grassknot'].includes(move.id);
if (target) {
let targetWeight = target.getWeightKg();
Expand Down

0 comments on commit f1a74eb

Please sign in to comment.