2
0
Fork 0
mirror of https://github.com/Shpoike/Quakespasm.git synced 2025-06-03 02:11:22 +00:00

Fix 'maps' command not listing files in paks/pk3s.

This commit is contained in:
Shpoike 2021-03-18 12:38:17 +00:00
parent b6df94c807
commit d6a25b37bc

View file

@ -136,7 +136,7 @@ void ExtraMaps_Init (void)
for (search = com_searchpaths; search; search = search->next)
{
if (*search->filename) //directory
if (!search->pack) //directory
{
#ifdef _WIN32
q_snprintf (filestring, sizeof(filestring), "%s/maps/*.bsp", search->filename);