sourcemod 1.13 upgrade. moved all plugins from steamworks to ripext. added smjanson and asyncsocket.inc an extra time so its easier to find. updated plugins that would not compile with 1.13
This commit is contained in:
@@ -25,7 +25,8 @@ public void SourceTV_OnSpectatorPutInServer(int client)
|
||||
|
||||
SourceTV_GetClientName(client, sName, sizeof(sName));
|
||||
|
||||
if(SourceTV_GetClientIP(client, sIP, sizeof(sIP)) && GeoipCountry(sIP, sCountry, sizeof(sCountry)))
|
||||
SourceTV_GetClientIP(client, sIP, sizeof(sIP));
|
||||
if (strlen(sIP) != 0 && GeoipCountry(sIP, sCountry, sizeof(sCountry)))
|
||||
PrintToChatAll("\x04[\x03SourceTV\x04] %s connected from %s", sName, sCountry);
|
||||
else
|
||||
PrintToChatAll("\x04[\x03SourceTV\x04] %s connected", sName);
|
||||
|
||||
Reference in New Issue
Block a user