Skip to content

Commit

Permalink
fixed a bug in !ranks
Browse files Browse the repository at this point in the history
  • Loading branch information
nikooo777 committed Oct 7, 2016
1 parent f8f9d9a commit 0a22528
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion csgo/addons/sourcemod/scripting/ckSurf/commands.sp
Original file line number Diff line number Diff line change
Expand Up @@ -1883,7 +1883,8 @@ public Action Client_Ranks(int client, int args)

if (i != 0 && i % 3 == 0)
{
PrintToChat(client, ChatLine);
CPPrintToChat(client, ChatLine);
PrintToConsole(client, Chatline);
Format(ChatLine, 512, " ");
}
Format(ChatLine, 512, "%s%s%c (%ip) ", ChatLine, RankValue[RankNameColored], WHITE, RankValue[PointReq]);
Expand Down

0 comments on commit 0a22528

Please sign in to comment.