From 6dca858fd7370d23626d76b64c50eedafc36519c Mon Sep 17 00:00:00 2001
From: CheemsAndFriends <granchinvictor@gmail.com>
Date: Thu, 12 Sep 2024 23:13:30 +0200
Subject: [PATCH] Introbizz

---
 source/funkin/ui/charSelect/IntroSubState.hx | 11 -----------
 1 file changed, 11 deletions(-)

diff --git a/source/funkin/ui/charSelect/IntroSubState.hx b/source/funkin/ui/charSelect/IntroSubState.hx
index 04503cbb9..8706013b0 100644
--- a/source/funkin/ui/charSelect/IntroSubState.hx
+++ b/source/funkin/ui/charSelect/IntroSubState.hx
@@ -20,8 +20,6 @@ class IntroSubState extends MusicBeatSubState
 {
   static final ATTRACT_VIDEO_PATH:String = Paths.stripLibrary(Paths.videos('introSelect'));
 
-  var introSound:FunkinSound = null;
-
   public override function create():Void
   {
     // Pause existing music.
@@ -40,15 +38,6 @@ class IntroSubState extends MusicBeatSubState
     trace('Playing native video ${ATTRACT_VIDEO_PATH}');
     playVideoNative(ATTRACT_VIDEO_PATH);
     #end
-
-    introSound = new FunkinSound();
-    introSound.loadEmbedded(Paths.sound('CS_Lights'));
-    introSound.pitch = 1;
-
-    FlxG.sound.defaultSoundGroup.add(introSound);
-    FlxG.sound.list.add(introSound);
-
-    introSound.play(true);
   }
 
   #if html5