diff --git a/src/pokemon.c b/src/pokemon.c index b33b2363ef..2f237cba6f 100644 --- a/src/pokemon.c +++ b/src/pokemon.c @@ -6042,7 +6042,7 @@ bool32 HasRelearnerTMMoves(struct Pokemon *mon) if (move == MOVE_NONE) continue; - if (!P_ENABLE_ALL_TM_MOVES || !CheckBagHasItem(item, 1)) + if (!P_ENABLE_ALL_TM_MOVES && !CheckBagHasItem(item, 1)) continue; if (!CanLearnTeachableMove(species, move))