summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Cabral <surferdude932@hotmail.com>2022-01-21 22:36:34 -0500
committerMatthew Cabral <surferdude932@hotmail.com>2022-01-21 22:36:34 -0500
commite0beac6c6a5e06a874ff2c84738cb066f444f4be (patch)
tree8ec2f3eb32abdb2559069616076e01e8072463ab
parent974951879d5474388a8edc25dcfe86bd58214063 (diff)
Changed `!IS_TYPE_PHYSICAL` to `IS_TYPE_SPECIAL` based on current `src/pokemon.c`
-rw-r--r--Add-Physical-Special-Split.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/Add-Physical-Special-Split.md b/Add-Physical-Special-Split.md
index 7b7cf49..224802b 100644
--- a/Add-Physical-Special-Split.md
+++ b/Add-Physical-Special-Split.md
@@ -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