Skip to content

Commit

Permalink
remove capital i (#1058)
Browse files Browse the repository at this point in the history
from the range as it can be mistaken with lower case L
  • Loading branch information
Nairdaa authored Jun 14, 2021
1 parent acbcd86 commit 178deb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/sourcemod/scripting/shavit-core.sp
Original file line number Diff line number Diff line change
Expand Up @@ -957,7 +957,7 @@ public Action Command_WipePlayer(int client, int args)
return Plugin_Handled;
}

char sAlphabet[] = "abcdefghijkmnopqrstuvwxyzABCDEFGHIJKLMNPQRSTUVWXYZ23456789!@#";
char sAlphabet[] = "abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ23456789!@#";
strcopy(gS_Verification[client], 8, "");

for(int i = 0; i < 5; i++)
Expand Down

0 comments on commit 178deb5

Please sign in to comment.