InfoMessage: also show to everyone on the sv at that point

This commit is contained in:
neon 2018-10-20 15:56:26 +02:00
parent e4f2bcff36
commit fb194b4d79

View File

@ -68,7 +68,18 @@ public void Cvar_FileChanged(ConVar convar, const char[] oldValue, const char[]
}
else
{
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);
}
}
//----------------------------------------------------------------------------------------------------