InfoMessage: also show to everyone on the sv at that point
This commit is contained in:
parent
e4f2bcff36
commit
fb194b4d79
@ -68,7 +68,18 @@ public void Cvar_FileChanged(ConVar convar, const char[] oldValue, const char[]
|
|||||||
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
LogError("[SM] File not found! (configs/info_messages/%s.txt)", sFilename);
|
LogError("[SM] File not found! (configs/info_messages/%s.txt)", sFilename);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
for (int i = 1; i <= MaxClients; i++)
|
||||||
|
{
|
||||||
|
if (!IsClientInGame(i) || IsFakeClient(i))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
OnClientPutInServer(i);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//----------------------------------------------------------------------------------------------------
|
//----------------------------------------------------------------------------------------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user