Change destiny bond to HitResult.OTHER so it doesn't trigger rseed

This commit is contained in:
Christopher Schmidt 2025-02-01 08:58:26 -05:00
parent 0ce30aad5f
commit c1516da1f9

View File

@ -722,7 +722,7 @@ export class DestinyBondTag extends BattlerTag {
pokemonNameWithAffix2: getPokemonNameWithAffix(pokemon)
})
);
pokemon.damageAndUpdate(pokemon.hp, HitResult.ONE_HIT_KO, false, false, true);
pokemon.damageAndUpdate(pokemon.hp, HitResult.OTHER, false, false, true);
return false;
}
}