mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-17 23:21:22 +00:00
Don't bail out in Y_StartIntermission in dedicated mode, this causes the game not to add on score bonuses for players from the server's view of things!
This commit is contained in:
parent
b564c8ab9a
commit
284e539c66
1 changed files with 2 additions and 1 deletions
|
@ -965,7 +965,8 @@ void Y_StartIntermission(void)
|
|||
}
|
||||
|
||||
// We couldn't display the intermission even if we wanted to.
|
||||
if (dedicated) return;
|
||||
// But we still need to give the players their score bonuses, dummy.
|
||||
//if (dedicated) return;
|
||||
|
||||
// This should always exist, but just in case...
|
||||
if(!mapheaderinfo[prevmap])
|
||||
|
|
Loading…
Reference in a new issue