mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-12-14 06:01:10 +00:00
Fix levelshot so that it cannot be executed by remote clients (#4339)
This commit is contained in:
parent
be4e459148
commit
d2612c8a36
1 changed files with 8 additions and 1 deletions
|
@ -397,6 +397,13 @@ void Cmd_LevelShot_f( gentity_t *ent ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(!ent->client->pers.localClient)
|
||||||
|
{
|
||||||
|
trap_SendServerCommand(ent-g_entities,
|
||||||
|
"print \"The levelshot command must be executed by a local client\n\"");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
BeginIntermission();
|
BeginIntermission();
|
||||||
trap_SendServerCommand( ent-g_entities, "clientLevelShot" );
|
trap_SendServerCommand( ent-g_entities, "clientLevelShot" );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue