diff --git a/Assets/Scripts/Entities/Player.cs b/Assets/Scripts/Entities/Player.cs index 2f0fe01..154909f 100644 --- a/Assets/Scripts/Entities/Player.cs +++ b/Assets/Scripts/Entities/Player.cs @@ -78,7 +78,10 @@ public class Player : Mob { /// protected override void Death() { Debug.Log("Player died..."); - Destroy(this.gameObject); + Destroy(this.gameObject); + GameController.instance.GetAudioControl().SfxStop(AudioControl.Sfx.slowdriving); + GameController.instance.GetAudioControl().SfxStop(AudioControl.Sfx.driving); + GameController.instance.GetAudioControl().SfxPlay(AudioControl.Sfx.explosion); GameController.instance.EndGame(GameController.EndedCause.DIED); } }