In battle move descriptions index fix (#4678)

This commit is contained in:
sneed 2024-05-31 16:54:51 +03:00 committed by GitHub
parent d55e072747
commit 810caa7fd6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1847,7 +1847,7 @@ static void MoveSelectionDisplayMoveDescription(u32 battler)
if (gMovesInfo[move].effect == EFFECT_PLACEHOLDER)
StringAppend(gDisplayedStringBattle, gNotDoneYetDescription);
else
StringAppend(gDisplayedStringBattle, gMovesInfo[move - 1].description);
StringAppend(gDisplayedStringBattle, gMovesInfo[move].description);
BattlePutTextOnWindow(gDisplayedStringBattle, B_WIN_MOVE_DESCRIPTION);
if (gCategoryIconSpriteId == 0xFF)