From cb9ed69a606b98933d52d02e163b2a1989ca9e6a Mon Sep 17 00:00:00 2001 From: Gerhards Kristians Tillers Date: Mon, 4 Mar 2024 07:05:03 +0000 Subject: [PATCH] Update Game_V2.py --- Game_V2.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Game_V2.py b/Game_V2.py index dc6f2d3..9f2f05e 100644 --- a/Game_V2.py +++ b/Game_V2.py @@ -61,6 +61,7 @@ class Player(pygame.sprite.Sprite): def get_health(self, amnount): if self.target_health < self.maximum_health: self.target_health += amnount + pygame.mixer.Sound("Sounds/health_plus.mp3") if self.target_health >= self.maximum_health: self.target_health = self.maximum_health