From 0dfb645232286d00a4e75cb0869a4fb6accdaae3 Mon Sep 17 00:00:00 2001 From: Kurausukun Date: Tue, 5 Sep 2023 18:34:23 -0400 Subject: [PATCH] fixed argument --- 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 12ccfa1..8b4598f 100644 --- a/Add-Physical-Special-Split.md +++ b/Add-Physical-Special-Split.md @@ -158,7 +158,7 @@ IS_MOVE_SPECIAL(gCurrentMove) The ones in **battle_script_commands.c** can also be changed like this, but the argument names are different. The first one (related to the Hustle ability) looks like this: ```c -IS_TYPE_PHYSICAL(moveType) +IS_TYPE_PHYSICAL(type) ``` We will change this to: ```c