Index: src/game/g_cmds.c =================================================================== --- src/game/g_cmds.c (revision 848) +++ src/game/g_cmds.c (working copy) @@ -1011,6 +1011,13 @@ return; } + if( ent->client->pers.muted ) + { + trap_SendServerCommand( ent - g_entities, + "print \"You are muted and cannot call votes\n\"" ); + return; + } + if( ent->client->pers.teamSelection == PTE_NONE ) { trap_SendServerCommand( ent-g_entities, "print \"Not allowed to call a vote as spectator\n\"" ); @@ -1247,6 +1254,13 @@ return; } + if( ent->client->pers.muted ) + { + trap_SendServerCommand( ent - g_entities, + "print \"You are muted and cannot call votes\n\"" ); + return; + } + if( ent->client->pers.teamSelection == PTE_NONE ) { trap_SendServerCommand( ent-g_entities, "print \"Not allowed to call a vote as spectator\n\"" );