From 167bbf29adf60ec10f2c8e534d0dce7c4aaab352 Mon Sep 17 00:00:00 2001 From: Eric Robinson Date: Tue, 30 Dec 2025 13:57:56 -0500 Subject: [PATCH] Update player.cpp --- Source/player.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/player.cpp b/Source/player.cpp index ad372bc53..73e4f606e 100644 --- a/Source/player.cpp +++ b/Source/player.cpp @@ -509,7 +509,7 @@ bool DamageWeapon(Player &player, unsigned damageFrequency) if (player.InvBody[INVLOC_HAND_RIGHT]._iDurability == 0) { RemoveEquipment(player, INVLOC_HAND_RIGHT, true); CalcPlrInv(player, true); - PlaySfxLoc(SfxID::BrokeWeapon, player.position.tile); + PlaySfxLoc(SfxID::BrokeShield, player.position.tile); return true; } } @@ -523,7 +523,7 @@ bool DamageWeapon(Player &player, unsigned damageFrequency) if (player.InvBody[INVLOC_HAND_LEFT]._iDurability == 0) { RemoveEquipment(player, INVLOC_HAND_LEFT, true); CalcPlrInv(player, true); - PlaySfxLoc(SfxID::BrokeWeapon, player.position.tile); + PlaySfxLoc(SfxID::BrokeShield, player.position.tile); return true; } }