mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Spectator intermission: Only use boss name to describe the Round if the cool boss intro occoured at level load.
This commit is contained in:
parent
7aa40f1a0a
commit
c5f7f93e20
2 changed files with 2 additions and 2 deletions
|
|
@ -443,7 +443,7 @@ void level_tally_t::Init(player_t *player)
|
|||
|
||||
roundNum = roundqueue.roundnum;
|
||||
}
|
||||
else if (bossinfo.valid == true && bossinfo.enemyname)
|
||||
else if (K_CheckBossIntro() == true && bossinfo.enemyname)
|
||||
{
|
||||
snprintf(
|
||||
header, sizeof header,
|
||||
|
|
|
|||
|
|
@ -411,7 +411,7 @@ static void Y_CalculateMatchData(UINT8 rankingsmode, void (*comparison)(INT32))
|
|||
|
||||
data.roundnum = roundqueue.roundnum;
|
||||
}
|
||||
else if (bossinfo.valid == true && bossinfo.enemyname)
|
||||
else if (K_CheckBossIntro() == true && bossinfo.enemyname)
|
||||
{
|
||||
snprintf(data.headerstring,
|
||||
sizeof data.headerstring,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue