From 538e3de3096b2a968fbf6cb7c0b7209b6591e5fd Mon Sep 17 00:00:00 2001 From: Andrew James Date: Sun, 17 Apr 2022 19:48:39 +1000 Subject: [PATCH] Play sound after withdrawing gold from the stash All gold related interactions a player can make with the stash now have audio feedback --- Source/qol/stash.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/qol/stash.cpp b/Source/qol/stash.cpp index feaeecab6..e9602340e 100644 --- a/Source/qol/stash.cpp +++ b/Source/qol/stash.cpp @@ -594,6 +594,7 @@ void WithdrawGoldKeyPress(char vkey) if (vkey == DVL_VK_RETURN) { if (WithdrawGoldValue > 0) { WithdrawGold(myPlayer, WithdrawGoldValue); + PlaySFX(IS_GOLD); } CloseGoldWithdraw(); } else if (vkey == DVL_VK_ESCAPE) {