mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2024-11-27 06:22:27 +00:00
server used say for cmds issued during intermission
This commit is contained in:
parent
3d707aff3e
commit
ebd523ad72
1 changed files with 6 additions and 1 deletions
|
@ -5,6 +5,9 @@
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
//
|
//
|
||||||
// $Log$
|
// $Log$
|
||||||
|
// Revision 1.117 2002/06/03 05:56:04 jbravo
|
||||||
|
// server used say for cmds issued during intermission
|
||||||
|
//
|
||||||
// Revision 1.116 2002/06/03 00:46:08 niceass
|
// Revision 1.116 2002/06/03 00:46:08 niceass
|
||||||
// match scoreboard changes
|
// match scoreboard changes
|
||||||
//
|
//
|
||||||
|
@ -2861,7 +2864,9 @@ void ClientCommand( int clientNum ) {
|
||||||
|
|
||||||
// ignore all other commands when at intermission
|
// ignore all other commands when at intermission
|
||||||
if (level.intermissiontime) {
|
if (level.intermissiontime) {
|
||||||
Cmd_Say_f (ent, qfalse, qtrue);
|
// JBravo: this is just simply way out there.
|
||||||
|
// Cmd_Say_f (ent, qfalse, qtrue);
|
||||||
|
trap_SendServerCommand (ent-g_entities, va("print \"That command is not allowed during intermission\n\""));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue