Fix Payback to double power on a switch

This commit is contained in:
Guangcong Luo 2012-01-02 18:58:10 -05:00
parent 682917d4ae
commit d16db005be

View File

@ -6769,7 +6769,7 @@ exports.BattleMovedex = {
accuracy: true,
basePower: 50,
basePowerCallback: function(pokemon, target) {
if (target.newlySwitched || this.willMove(target))
if (!target.newlySwitched && this.willMove(target))
{
this.debug('Payback NOT boosted');
return 50;