Changed `!IS_TYPE_PHYSICAL` to `IS_TYPE_SPECIAL` based on current `src/pokemon.c`

Matthew Cabral 2022-01-21 22:36:34 -05:00
parent 974951879d
commit e0beac6c6a
1 changed files with 1 additions and 1 deletions

@ -146,7 +146,7 @@ IS_TYPE_PHYSICAL(gBattleMoves[gCurrentMove])
```
The third one also needs to be changed; originally it reads:
```c
!IS_TYPE_PHYSICAL(moveType)
IS_TYPE_SPECIAL(moveType)
```
We will change this to:
```c