From f94638066254e02edc4ad88320ea952150f32ce5 Mon Sep 17 00:00:00 2001
From: Mario <mario@smbclan.net>
Date: Tue, 6 Aug 2019 18:12:56 +1000
Subject: [PATCH] Disable trigger_music when the match ends, so it doesn't
 overlap with the intermission cdtrack

---
 qcsrc/common/mapobjects/target/music.qc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/qcsrc/common/mapobjects/target/music.qc b/qcsrc/common/mapobjects/target/music.qc
index 5a63872db..55ccf41fb 100644
--- a/qcsrc/common/mapobjects/target/music.qc
+++ b/qcsrc/common/mapobjects/target/music.qc
@@ -272,7 +272,7 @@ void Net_TargetMusic()
 
 void Ent_TriggerMusic_Think(entity this)
 {
-	if(this.active == ACTIVE_NOT)
+	if(this.active == ACTIVE_NOT || intermission)
 	{
 		return;
 	}
-- 
2.39.5