Fixed tests on modern

This commit is contained in:
Eduardo Quezada 2023-10-30 10:58:30 -03:00
parent f4be01f0ac
commit 71ba501b94
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
SINGLE_BATTLE_TEST("Sheer Force boosts power, but removes secondary effects of moves", s16 damage) SINGLE_BATTLE_TEST("Sheer Force boosts power, but removes secondary effects of moves", s16 damage)
{ {
s32 j; s32 j;
u32 ability, move; u32 ability = 0, move = 0;
for (j = 1; j < MOVES_COUNT; j++) for (j = 1; j < MOVES_COUNT; j++)
{ {

View File

@ -3,7 +3,7 @@
ASSUMPTIONS ASSUMPTIONS
{ {
gItems[ITEM_WHITE_HERB].holdEffect == HOLD_EFFECT_RESTORE_STATS; ASSUME(gItems[ITEM_WHITE_HERB].holdEffect == HOLD_EFFECT_RESTORE_STATS);
} }
SINGLE_BATTLE_TEST("White Herb restores stats when they're lowered") SINGLE_BATTLE_TEST("White Herb restores stats when they're lowered")