2
0
mirror of https://github.com/rehlds/rehlds.git synced 2025-01-14 07:38:04 +03:00

SV_CreateCustomizationList: spew logs in only dev mode

This commit is contained in:
s1lentq 2024-03-18 22:12:01 +07:00
parent f26ad71aba
commit 462fe55fb8

View File

@ -145,9 +145,9 @@ void SV_CreateCustomizationList(client_t *pHost)
else
{
if (sv_allow_upload.value == 0.0f)
Con_Printf("Ignoring custom decal from %s\n", pHost->name);
Con_DPrintf("Ignoring custom decal from %s\n", pHost->name);
else
Con_Printf("Ignoring invalid custom decal from %s\n", pHost->name);
Con_DPrintf("Ignoring invalid custom decal from %s\n", pHost->name);
}
}
}