Browse Source

Play sound after withdrawing gold from the stash

All gold related interactions a player can make with the stash now have audio feedback
pull/4304/head
Andrew James 4 years ago committed by Anders Jenbo
parent
commit
538e3de309
  1. 1
      Source/qol/stash.cpp

1
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) {

Loading…
Cancel
Save