mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-04-24 06:17:40 -04:00
Fix showing level moves in blue instead of spliced moves
This commit is contained in:
parent
1236cb948d
commit
f0055048ed
1 changed files with 1 additions and 1 deletions
|
@ -587,7 +587,7 @@ export default class PartyUiHandler extends MessageUiHandler {
|
|||
else if (this.partyUiMode === PartyUiMode.REMEMBER_MOVE_MODIFIER) {
|
||||
const move = learnableLevelMoves[option];
|
||||
optionName = allMoves[move].name;
|
||||
altText = !!pokemon.getSpeciesForm().getLevelMoves().find(plm => plm[1] === move);
|
||||
altText = !pokemon.getSpeciesForm().getLevelMoves().find(plm => plm[1] === move);
|
||||
} else {
|
||||
const itemModifier = itemModifiers[option];
|
||||
optionName = itemModifier.type.name;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue