Skip to content

Commit

Permalink
Grip Claw now shows the proper pokemon nickname (pagefaultgames#3634)
Browse files Browse the repository at this point in the history
Co-authored-by: frutescens <info@laptop>
  • Loading branch information
frutescens and frutescens authored Aug 19, 2024
1 parent 747e4f9 commit bdde03b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modifier/modifier.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2414,7 +2414,7 @@ export class ContactHeldItemTransferChanceModifier extends HeldItemTransferModif
}

getTransferMessage(pokemon: Pokemon, targetPokemon: Pokemon, item: ModifierTypes.ModifierType): string {
return i18next.t("modifier:contactHeldItemTransferApply", { pokemonNameWithAffix: getPokemonNameWithAffix(targetPokemon), itemName: item.name, pokemonName: pokemon.name, typeName: this.type.name });
return i18next.t("modifier:contactHeldItemTransferApply", { pokemonNameWithAffix: getPokemonNameWithAffix(targetPokemon), itemName: item.name, pokemonName: getPokemonNameWithAffix(pokemon), typeName: this.type.name });
}

getMaxHeldItemCount(pokemon: Pokemon): integer {
Expand Down

0 comments on commit bdde03b

Please sign in to comment.