Skip to content

Commit

Permalink
fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
maxijabase committed Sep 21, 2020
1 parent 4be2b69 commit d9719ce
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scripting/calladmin_block.sp
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public void OnClientPostAdminCheck(int client) {

if (!file) {

LogError("Error while trying to open the config file.");
LogError("%s Error while trying to open the config file.", PREFIX);
delete file;
return;

Expand All @@ -124,7 +124,7 @@ public void OnClientPostAdminCheck(int client) {

if (!GetClientAuthId(client, AuthId_Steam2, steamid, sizeof(steamid))) {

LogError("Error while attempting to fetch client's Auth ID");
LogError("%s Error while attempting to fetch client's Auth ID", PREFIX);
delete file;
return;

Expand Down Expand Up @@ -448,7 +448,7 @@ public Action CMD_Remove(int client, int args) {

}

file2.WriteLine("// CallAdmin Blocklist - List of Steam IDs blocked from reporting.\n");
file2.WriteLine("// CallAdmin Blocklist - List of Steam IDs blocked from reporting.");
file2.WriteLine("");

for (int i = 0; i < al.Length; i++) {
Expand Down Expand Up @@ -575,7 +575,7 @@ public Action CallAdmin_OnDrawMenu(int client) {

if (!GetClientAuthId(client, AuthId_Steam2, steamid, sizeof(steamid))) {

LogError("Error while attempting to fetch client's Auth ID");
LogError("%s Error while attempting to fetch client's Auth ID", PREFIX);
return Plugin_Handled;

}
Expand All @@ -589,4 +589,4 @@ public Action CallAdmin_OnDrawMenu(int client) {

return Plugin_Continue;

}
}

0 comments on commit d9719ce

Please sign in to comment.