diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/server.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/server.cpp b/src/server.cpp index f793c770b..b125bff8d 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -3965,6 +3965,8 @@ void Server::fillMediaCache() paths.push_back(mod.path + DIR_DELIM + "sounds"); paths.push_back(mod.path + DIR_DELIM + "media"); } + std::string path_all = "textures"; + paths.push_back(path_all + DIR_DELIM + "all"); // Collect media file information from paths into cache for(std::list<std::string>::iterator i = paths.begin(); |