diff --git a/app/lib/surface/CocoSprite.coffee b/app/lib/surface/CocoSprite.coffee index 7a40156da..23a600617 100644 --- a/app/lib/surface/CocoSprite.coffee +++ b/app/lib/surface/CocoSprite.coffee @@ -432,7 +432,7 @@ module.exports = CocoSprite = class CocoSprite extends CocoClass playSounds: (withDelay=true, volume=1.0) -> for event in @thang.currentEvents ? [] @playSound event, withDelay, volume - if event is 'pay-bounty-gold' and thang.bountyGold > 25 + if event is 'pay-bounty-gold' and @thang.bountyGold > 25 AudioPlayer.playInterfaceSound 'coin_1', 0.25 if @thang.actionActivated and (action = @thang.getActionName()) isnt 'say' @playSound action, withDelay, volume