From d3a38a437544af807d33b6f180f684e42eb021e9 Mon Sep 17 00:00:00 2001 From: TehRealSalt Date: Wed, 9 Jan 2019 21:17:10 -0500 Subject: [PATCH] Add disable for music credit showing on the change music linedef --- src/p_spec.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/p_spec.c b/src/p_spec.c index e3b54cbe..ca4967ce 100644 --- a/src/p_spec.c +++ b/src/p_spec.c @@ -2450,7 +2450,8 @@ static void P_ProcessLineSpecial(line_t *line, mobj_t *mo, sector_t *callsec) mapmusflags |= MUSIC_RELOADRESET; S_ChangeMusic(mapmusname, mapmusflags, !(line->flags & ML_EFFECT4)); - S_ShowMusicCredit(); + if (!(line->flags & ML_EFFECT3)) + S_ShowMusicCredit(); // Except, you can use the ML_BLOCKMONSTERS flag to change this behavior. // if (mapmusflags & MUSIC_RELOADRESET) then it will reset the music in G_PlayerReborn.