mirror of https://github.com/pret/pokeemerald.git
Changed `!IS_TYPE_PHYSICAL` to `IS_TYPE_SPECIAL` based on current `src/pokemon.c`
parent
974951879d
commit
e0beac6c6a
|
@ -146,7 +146,7 @@ IS_TYPE_PHYSICAL(gBattleMoves[gCurrentMove])
|
||||||
```
|
```
|
||||||
The third one also needs to be changed; originally it reads:
|
The third one also needs to be changed; originally it reads:
|
||||||
```c
|
```c
|
||||||
!IS_TYPE_PHYSICAL(moveType)
|
IS_TYPE_SPECIAL(moveType)
|
||||||
```
|
```
|
||||||
We will change this to:
|
We will change this to:
|
||||||
```c
|
```c
|
||||||
|
|
Loading…
Reference in New Issue