Decomp ItemManager::UpgradeBombchuBag

This commit is contained in:
Aetias
2024-04-30 18:06:48 +02:00
parent 9aefce8b0c
commit 7ab07cf116
2 changed files with 5 additions and 27 deletions
+5
View File
@@ -837,3 +837,8 @@ THUMB void ItemManager::UpgradeBombBag() {
if (mBombBagSize < MAX_AMMO_UPGRADE) mBombBagSize += 1;
(*mAmmo)[ItemFlag_BombBag] = this->GetMaxAmmo(ItemFlag_BombBag);
}
THUMB void ItemManager::UpgradeBombchuBag() {
if (mBombchuBagSize < MAX_AMMO_UPGRADE) mBombchuBagSize += 1;
(*mAmmo)[ItemFlag_BombchuBag] = this->GetMaxAmmo(ItemFlag_BombchuBag);
}