summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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