2
0
mirror of https://github.com/rehlds/rehlds.git synced 2025-02-26 21:41:06 +03:00

SV_CountResourceByType: Remove useless filter

This commit is contained in:
s1lent 2018-02-14 19:13:19 +07:00
parent 20de6914f7
commit 7a415ed47c
No known key found for this signature in database
GPG Key ID: 0FE401DC73916B5C

View File

@ -5039,9 +5039,6 @@ size_t SV_CountResourceByType(resourcetype_t type, resource_t **pResourceList, s
if (r->type != type)
continue;
if (r->type == t_decal && r->nIndex >= MAX_DECALS)
continue;
if (pResourceList)
pResourceList[nCount] = r;