# HG changeset patch # User truebrain # Date 1213124350 0 # Node ID cf5ee9ede576b6e3534ec25fccfc2bae49cef114 # Parent 05487c72e9fc0aff7f54383d79e2242050c02f37 (svn r13449) [NoAI] -Fix: .tar support is not yet available inside the library-structure .. disable it for now diff -r 05487c72e9fc -r cf5ee9ede576 src/ai/ai_squirrel.cpp --- a/src/ai/ai_squirrel.cpp Tue Jun 10 18:47:31 2008 +0000 +++ b/src/ai/ai_squirrel.cpp Tue Jun 10 18:59:10 2008 +0000 @@ -52,7 +52,7 @@ continue; } } - if (sb.st_mode & S_IFREG) { + if (sb.st_mode & S_IFREG && !library_dir) { char *ext = strrchr(d_name, '.'); if (ext != NULL && strcasecmp(ext, ".tar") != 0) continue;