Add disable for music credit showing on the change music linedef

This commit is contained in:
TehRealSalt 2019-01-09 21:17:10 -05:00
parent 2ccdd3e4b7
commit d3a38a4375

View file

@ -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.