Decomp ItemManager::UpgradeQuiver

This commit is contained in:
Aetias
2024-04-30 18:05:13 +02:00
parent 458ede60df
commit 4f44cc2f93
3 changed files with 6 additions and 27 deletions
+5
View File
@@ -827,3 +827,8 @@ ARM void ItemManager::UpdateSwordShieldInUse() {
this->GetEquipItem(ItemFlag_OshusSword)->UpdateInUse(1);
this->GetEquipItem(ItemFlag_WoodenShield)->UpdateInUse(1);
}
THUMB void ItemManager::UpgradeQuiver() {
if (mQuiverSize < MAX_AMMO_UPGRADE) mQuiverSize += 1;
(*mAmmo)[ItemFlag_Bow] = this->GetMaxAmmo(ItemFlag_Bow);
}