about summary refs log tree commit diff homepage
path: root/brutalmaze/characters.py
diff options
context:
space:
mode:
Diffstat (limited to 'brutalmaze/characters.py')
-rw-r--r--brutalmaze/characters.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/brutalmaze/characters.py b/brutalmaze/characters.py
index 0ffcd95..1b98411 100644
--- a/brutalmaze/characters.py
+++ b/brutalmaze/characters.py
@@ -77,9 +77,8 @@ class Hero:
             self.wound -= HEAL_SPEED / self.spin_speed / HERO_HP
             if self.wound < 0: self.wound = 0.0
         if time > self.next_beat:
-            wound = self.wound / HERO_HP
-            play(self.sfx_heart, wound ** 0.5)
-            self.next_beat = time + MIN_BEAT*(2-wound)
+            self.sfx_heart.play()
+            self.next_beat = time + MIN_BEAT*(2 - self.wound/HERO_HP)
 
         if self.slashing and time >= self.next_strike:
             self.next_strike = time + ATTACK_SPEED