mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2025-02-07 17:11:22 +00:00
fix starting demos with autoaction
This commit is contained in:
parent
60ff98f41d
commit
439c0947e8
1 changed files with 5 additions and 1 deletions
|
@ -5,6 +5,9 @@
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
//
|
//
|
||||||
// $Log$
|
// $Log$
|
||||||
|
// Revision 1.106 2002/06/12 01:23:36 blaze
|
||||||
|
// fix starting demos with autoaction
|
||||||
|
//
|
||||||
// Revision 1.105 2002/06/10 14:02:52 slicer
|
// Revision 1.105 2002/06/10 14:02:52 slicer
|
||||||
// Removed rq3_cmd : ROUND
|
// Removed rq3_cmd : ROUND
|
||||||
//
|
//
|
||||||
|
@ -436,9 +439,10 @@ void CheckTeamRules()
|
||||||
if (!player->inuse)
|
if (!player->inuse)
|
||||||
continue;
|
continue;
|
||||||
G_AddEvent (player, EV_RQ3_SOUND, RQ3_SOUND_COUNTDOWN);
|
G_AddEvent (player, EV_RQ3_SOUND, RQ3_SOUND_COUNTDOWN);
|
||||||
trap_SendServerCommand( i, va("rq3_cmd %i 0", STARTDEMO));
|
|
||||||
}
|
}
|
||||||
//Blaze: moved from below the G_AddEvent
|
//Blaze: moved from below the G_AddEvent
|
||||||
|
trap_SendServerCommand( -1, va("rq3_cmd %i 0", STARTDEMO));
|
||||||
trap_SendServerCommand( -1, va("rq3_cmd %i 0", MAPSTART));
|
trap_SendServerCommand( -1, va("rq3_cmd %i 0", MAPSTART));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue