diff --git a/play.pokemonshowdown.com/src/battle-searchresults.tsx b/play.pokemonshowdown.com/src/battle-searchresults.tsx index 38179a678..4d5de8b82 100644 --- a/play.pokemonshowdown.com/src/battle-searchresults.tsx +++ b/play.pokemonshowdown.com/src/battle-searchresults.tsx @@ -243,7 +243,7 @@ export class PSSearchResults extends preact.Component<{ let pp = (move.pp === 1 || move.noPPBoosts ? move.pp : move.pp * 8 / 5); if (search.dex.gen < 3) pp = Math.min(61, pp); if (search.dex.modid === 'champions') { - pp = move.pp > 20 ? 20 : pp; + pp = move.pp > 20 ? 20 : move.pp; if (!move.noPPBoosts) pp = (pp / 5 + 1) * 4; } return