improved SaveLevel (was malfunctioning on paramina)

fixed ConnectAnnounce
This commit is contained in:
BotoX
2016-02-21 16:01:40 +01:00
parent 9536307155
commit 80d52d9aaa
6 changed files with 84 additions and 83 deletions
+2 -2
View File
@@ -25,7 +25,7 @@ public void OnClientPostAdminCheck(int client)
GetClientAuthId(client, AuthId_Steam2, sAuth, sizeof(sAuth));
if(GetClientIP(client, sIP, sizeof(sIP)) && GeoipCountry(sIP, sCountry, sizeof(sCountry)))
PrintToChatAll("\x04%L [\x03%s\x04] connected from %s", client, sAuth, sCountry);
PrintToChatAll("\x04%N [\x03%s\x04] connected from %s", client, sAuth, sCountry);
else
PrintToChatAll("\x04%L [\x03%s\x04] connected", client, sAuth);
PrintToChatAll("\x04%N [\x03%s\x04] connected", client, sAuth);
}