diff options
Diffstat (limited to 'player.lua')
-rw-r--r-- | player.lua | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -439,8 +439,8 @@ function Player:respawn() end -- Sounds -function Player:playSound(sfx) - if self.alive then +function Player:playSound(sfx, force) + if self.alive or force then local source = love.audio.newSource(self.sfx[sfx]) source:play() end |