Skip to content

Commit

Permalink
Refactor queue implementation to fix formatting issue in PrintQueue f…
Browse files Browse the repository at this point in the history
…unction
  • Loading branch information
altair-sossai committed Oct 15, 2024
1 parent 7fa0662 commit 2f36067
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified addons/sourcemod/plugins/optional/l4d2_queue.smx
Binary file not shown.
2 changes: 1 addition & 1 deletion addons/sourcemod/scripting/l4d2_queue.sp
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ void PrintQueue(int target)
if (position == 1)
FormatEx(output, sizeof(output), "\x04Fila: \x03%dº \x01%N", position, client);
else
Format(output, sizeof(output), "%s\x01, \x03%dº \x01%N", output, position, client);
Format(output, sizeof(output), "%s \x03%dº \x01%N", output, position, client);

position++;

Expand Down

0 comments on commit 2f36067

Please sign in to comment.