From e0beac6c6a5e06a874ff2c84738cb066f444f4be Mon Sep 17 00:00:00 2001 From: Matthew Cabral Date: Fri, 21 Jan 2022 22:36:34 -0500 Subject: [PATCH] Changed `!IS_TYPE_PHYSICAL` to `IS_TYPE_SPECIAL` based on current `src/pokemon.c` --- Add-Physical-Special-Split.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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