From 5d5f655b807709810188374ffe1a8e7f6391b677 Mon Sep 17 00:00:00 2001 From: PhallenTree <168426989+PhallenTree@users.noreply.github.com> Date: Sat, 31 Jan 2026 17:36:56 +0000 Subject: [PATCH] Fixes Infiltrator test battler not using intended move (#9096) --- test/battle/ability/infiltrator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/battle/ability/infiltrator.c b/test/battle/ability/infiltrator.c index 09e5a92a66..bd85b7d5b8 100644 --- a/test/battle/ability/infiltrator.c +++ b/test/battle/ability/infiltrator.c @@ -230,7 +230,7 @@ SINGLE_BATTLE_TEST("Infiltrator doesn't ignore a battler's Substitute when using PLAYER(SPECIES_DRAGAPULT) { Ability(ability); } OPPONENT(SPECIES_WOBBUFFET); } WHEN { - TURN { MOVE(opponent, MOVE_SUBSTITUTE); MOVE(player, MOVE_SCRATCH); } + TURN { MOVE(opponent, MOVE_SUBSTITUTE); MOVE(player, move); } } SCENE { ANIMATION(ANIM_TYPE_MOVE, MOVE_SUBSTITUTE, opponent); NOT ANIMATION(ANIM_TYPE_MOVE, move, player);