diff --git a/Add-Physical-Special-Split.md b/Add-Physical-Special-Split.md index 4638b2f..489967b 100644 --- a/Add-Physical-Special-Split.md +++ b/Add-Physical-Special-Split.md @@ -157,7 +157,7 @@ IS_TYPE_SPECIAL(gBattleMoves[gCurrentMove]) The first one in **battle_script_commands.c** can also be changed like this, but the argument names are different for the second and third one. The second one looks like this originally: ```c -IS_TYPE_PHYSICAL(type) +IS_TYPE_PHYSICAL(moveType) ``` We will change this to: ```c @@ -165,7 +165,7 @@ IS_TYPE_PHYSICAL(gBattleMoves[gCurrentMove]) ``` The third one also needs to be changed; originally it reads: ```c -IS_TYPE_SPECIAL(type) +!IS_TYPE_PHYSICAL(moveType) ``` We will change this to: ```c