From f0055048edaafc5d59508b8cf5d3ca9a67e2b1bd Mon Sep 17 00:00:00 2001 From: Flashfyre Date: Wed, 8 Nov 2023 23:37:12 -0500 Subject: [PATCH] Fix showing level moves in blue instead of spliced moves --- src/ui/party-ui-handler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/party-ui-handler.ts b/src/ui/party-ui-handler.ts index 33ac429fc..29547ff99 100644 --- a/src/ui/party-ui-handler.ts +++ b/src/ui/party-ui-handler.ts @@ -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;