HideMouse doesn't take parameters

This commit is contained in:
smallmodel 2024-02-03 23:19:55 +01:00
parent e8109076f4
commit 56044dd8f8
No known key found for this signature in database
GPG key ID: 9F2D623CEDF08512

View file

@ -3725,13 +3725,6 @@ void ScriptThread::EventHideMouse(Event *ev)
{
gentity_t *ent;
int i;
str name;
if (game.maxclients <= 0) {
return;
}
name = ev->GetString(1);
for (i = 0, ent = g_entities; i < game.maxclients; i++, ent++) {
if (!ent->inuse || !ent->client) {