summaryrefslogtreecommitdiff
path: root/src/berry_powder.c
diff options
context:
space:
mode:
authorPikalaxALT <PikalaxALT@users.noreply.github.com>2020-03-05 06:06:51 -0500
committerGitHub <noreply@github.com>2020-03-05 06:06:51 -0500
commit362cddc0f512d86af0d7e9bbf7c8edba2115c175 (patch)
tree9c24f5cc84e71ea519ae1f8ccb32135556f58244 /src/berry_powder.c
parent437fe6631adfe04ce89f966c189b7b015d81cf26 (diff)
parent102744163be40ec7fdab95beafac819d1e118bb5 (diff)
Merge pull request #285 from GriffinRichards/doc-scriptclean
Clean up script documentation
Diffstat (limited to 'src/berry_powder.c')
-rw-r--r--src/berry_powder.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/berry_powder.c b/src/berry_powder.c
index 2eff23802..3ebffed48 100644
--- a/src/berry_powder.c
+++ b/src/berry_powder.c
@@ -36,7 +36,7 @@ static bool8 HasEnoughBerryPowder(u32 cost)
return TRUE;
}
-bool8 Special_HasEnoughBerryPowder(void)
+bool8 Script_HasEnoughBerryPowder(void)
{
if (DecryptBerryPowder(&gSaveBlock2Ptr->berryCrush.berryPowderAmount) < gSpecialVar_0x8004)
return FALSE;
@@ -73,7 +73,7 @@ static bool8 TakeBerryPowder(u32 cost)
}
}
-bool8 Special_TakeBerryPowder(void)
+bool8 Script_TakeBerryPowder(void)
{
u32 *powder = &gSaveBlock2Ptr->berryCrush.berryPowderAmount;
if (!HasEnoughBerryPowder(gSpecialVar_0x8004))