summaryrefslogtreecommitdiff
path: root/src/decoration_inventory.c
diff options
context:
space:
mode:
authorGriffinR <griffin.g.richards@gmail.com>2020-07-20 18:02:50 -0400
committerGitHub <noreply@github.com>2020-07-20 18:02:50 -0400
commitaeeff84462973b267e62031a945603d96afed716 (patch)
tree046ce2a73b467844e95a490b1cfa9cdda5e5f4df /src/decoration_inventory.c
parentd3bfb6cfc63f9f64295cbd864f98df9cf4c643b4 (diff)
parentf0bf1e641cb8532611c97354beaf46afaca7c417 (diff)
Merge pull request #780 from GriffinRichards/sync-scripts
Sync some scripts with pokeemerald
Diffstat (limited to 'src/decoration_inventory.c')
-rw-r--r--src/decoration_inventory.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decoration_inventory.c b/src/decoration_inventory.c
index feec11670..d9aa5d0fc 100644
--- a/src/decoration_inventory.c
+++ b/src/decoration_inventory.c
@@ -61,7 +61,7 @@ bool8 InventoryContainsDecoration(u8 decorationId)
return FALSE;
}
-bool8 GiveDecoration(u8 decorationId)
+bool8 AddDecoration(u8 decorationId)
{
u8 category;
s8 slot;
@@ -159,6 +159,6 @@ void Debug_GiveAllDecorations(void)
u8 decor;
for (decor = 0; decor < DECOR_COUNT; decor++)
- GiveDecoration(decor);
+ AddDecoration(decor);
}
#endif