stupid of me to forget still to assign the actual tag

This commit is contained in:
jenz 2024-04-28 22:03:32 +02:00
parent 0f0d634a8d
commit 1f2f558aa1

View File

@ -273,6 +273,9 @@ public void set_level_tag(int client, int lvl, int I_rank)
Format(hexadecimals, sizeof(hexadecimals), "%02X%02X%02X", red, green, blue);
if (I_rank > 250)
{
char tag[64];
Format(tag, sizeof(tag), "[LVL %i] ", lvl);
CCC_SetTag(client, tag);
CCC_SetColor(client, CCC_TagColor, StringToInt(hexadecimals, 16), false);
return;
}