include CTF in showing scoreboard at end of map

This commit is contained in:
Bryce Hutchings 2002-07-19 04:29:58 +00:00
parent 665f8c3b26
commit 09156ceee7

View file

@ -5,6 +5,9 @@
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// //
// $Log$ // $Log$
// Revision 1.102 2002/07/19 04:29:58 niceass
// include CTF in showing scoreboard at end of map
//
// Revision 1.101 2002/07/16 04:07:26 niceass // Revision 1.101 2002/07/16 04:07:26 niceass
// no "sudden death" in ctb // no "sudden death" in ctb
// //
@ -1562,7 +1565,8 @@ void BeginIntermission(void)
} }
MoveClientToIntermission(client); MoveClientToIntermission(client);
// JBravo: send the TP scoreboard to players // JBravo: send the TP scoreboard to players
if (g_gametype.integer == GT_TEAMPLAY) // NiceAss: And CTF
if (g_gametype.integer == GT_TEAMPLAY || g_gametype.integer == GT_CTF)
trap_SendServerCommand(i, va("rq3_cmd %i", MAPEND)); trap_SendServerCommand(i, va("rq3_cmd %i", MAPEND));
} }