From 93ee3a91979f85a01cd60466ea67ffb3e56a59ac Mon Sep 17 00:00:00 2001 From: Bassoonian Date: Thu, 18 Jul 2024 21:51:21 +0200 Subject: [PATCH] Fix Psycho Shift Frostbite interaction (#4995) --- src/battle_script_commands.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/battle_script_commands.c b/src/battle_script_commands.c index 77b18eafd3..64bf348478 100644 --- a/src/battle_script_commands.c +++ b/src/battle_script_commands.c @@ -9959,7 +9959,7 @@ static void Cmd_various(void) gBattleCommunication[MULTISTRING_CHOOSER] = 3; else if ((gBattleMons[gBattlerAttacker].status1 & STATUS1_SLEEP) && CanBeSlept(gBattlerTarget, targetAbility)) gBattleCommunication[MULTISTRING_CHOOSER] = 4; - else if ((gBattleMons[gBattlerAttacker].status1 & STATUS1_FROSTBITE) && CanBeFrozen(gBattlerTarget)) + else if ((gBattleMons[gBattlerAttacker].status1 & STATUS1_FROSTBITE) && CanGetFrostbite(gBattlerTarget)) gBattleCommunication[MULTISTRING_CHOOSER] = 5; else {