Skip to content

Commit

Permalink
Fixes #184
Browse files Browse the repository at this point in the history
  • Loading branch information
s1lentq committed Nov 1, 2017
1 parent 168838c commit b7208e9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions regamedll/dlls/multiplay_gamerules.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2523,6 +2523,9 @@ bool CHalfLifeMultiplay::CheckGameOver()
if (m_flIntermissionEndTime < gpGlobals->time && !IsCareer())
{
if (!UTIL_HumansInGame() // if only bots, just change immediately
#ifdef REGAMEDLL_FIXES
|| IsMultiplayer()
#endif
|| m_iEndIntermissionButtonHit // check that someone has pressed a key, or the max intermission time is over
|| ((m_flIntermissionStartTime + MAX_INTERMISSION_TIME) < gpGlobals->time))
{
Expand Down

1 comment on commit b7208e9

@SergeyShorokhov
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

Please sign in to comment.