List fixed common limit

This commit is contained in:
Jackzie 2021-05-18 18:55:54 -05:00
parent 069a05e3ca
commit 4782e9ab32
No known key found for this signature in database
GPG key ID: 1E834FE36520537A
2 changed files with 1 additions and 0 deletions

Binary file not shown.

View file

@ -157,5 +157,6 @@ public Action Cmd_List(int client, int args) {
ReplyToCommand(client, "%.1f%% Worker Commons", hPercentWorker.FloatValue * 100);
ReplyToCommand(client, "%.1f%% Riot Commons", hPercentRiot.FloatValue * 100);
ReplyToCommand(client, "%.1f%% Jimmy Gibs", hPercentJimmy.FloatValue * 100);
ReplyToCommand(client, "%d total commons allowed", commonLimit);
return Plugin_Handled;
}