From d3cadf093ed88e95dc29cc069952859ff4a056ee Mon Sep 17 00:00:00 2001 From: Pawkkie <61265402+Pawkkie@users.noreply.github.com> Date: Fri, 23 May 2025 08:18:59 -0400 Subject: [PATCH] Fix HasBattlerSideMoveWithEffect comment (#6965) --- src/battle_ai_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/battle_ai_util.c b/src/battle_ai_util.c index 1079cd7367..a07db9217a 100644 --- a/src/battle_ai_util.c +++ b/src/battle_ai_util.c @@ -2201,7 +2201,7 @@ bool32 HasBattlerSideMoveWithEffect(u32 battler, u32 effect) return FALSE; } -// HasSideMoveWithMoveEffect checks if the AI knows a side has a move effect, +// HasBattlerSideMoveWithEffect checks if the AI knows a side has a move effect, // while HasBattlerSideUsedMoveWithEffect checks if the side has ever used a move effect. // The former acts the same way as the latter if AI_FLAG_OMNISCIENT isn't used. bool32 HasBattlerSideUsedMoveWithEffect(u32 battler, u32 effect)