From e791bc08e76f42f7b8da726b59ba22cad9cdfb6b Mon Sep 17 00:00:00 2001 From: Eduardo Quezada Date: Thu, 2 May 2024 14:27:58 -0400 Subject: [PATCH] Fixed incoming master test messages --- test/battle/ability/color_change.c | 4 ++-- test/battle/ability/hospitality.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/battle/ability/color_change.c b/test/battle/ability/color_change.c index b7828bb978..86c009e8ac 100644 --- a/test/battle/ability/color_change.c +++ b/test/battle/ability/color_change.c @@ -73,7 +73,7 @@ SINGLE_BATTLE_TEST("Color Change changes the user to Electric type if hit by a m } SCENE { ANIMATION(ANIM_TYPE_MOVE, MOVE_PSYCHO_CUT, player); ABILITY_POPUP(opponent, ABILITY_COLOR_CHANGE); - MESSAGE("Foe Wobbuffet's Color Change made it the Electr type!"); + MESSAGE("Foe Wobbuffet's Color Change made it the Electric type!"); } } @@ -90,7 +90,7 @@ SINGLE_BATTLE_TEST("Color Change changes the type when a Pokemon is hit by Futur ANIMATION(ANIM_TYPE_MOVE, MOVE_FUTURE_SIGHT, player); MESSAGE("Foe Snorlax took the Future Sight attack!"); ABILITY_POPUP(opponent, ABILITY_COLOR_CHANGE); - MESSAGE("Foe Snorlax's Color Change made it the Psychc type!"); + MESSAGE("Foe Snorlax's Color Change made it the Psychic type!"); } } diff --git a/test/battle/ability/hospitality.c b/test/battle/ability/hospitality.c index 8f494ba4c6..308177d90f 100644 --- a/test/battle/ability/hospitality.c +++ b/test/battle/ability/hospitality.c @@ -85,7 +85,7 @@ DOUBLE_BATTLE_TEST("Hospitality does not trigger if there is no ally on the fiel MESSAGE("Wobbuffet fainted!"); HP_BAR(playerRight); MESSAGE("Wobbuffet fainted!"); - MESSAGE("Go! Ptchageist!"); + MESSAGE("Go! Poltchageist!"); NOT ABILITY_POPUP(playerLeft, ABILITY_HOSPITALITY); } }