1
0
mirror of https://github.com/moparisthebest/minetest synced 2024-08-13 16:53:49 -04:00

Add the mod search path user/mods/gameid

This commit is contained in:
Perttu Ahola 2012-03-19 08:34:38 +02:00
parent 5ef78cd815
commit 1ff20da5b6

View File

@ -904,6 +904,9 @@ Server::Server(
for(std::set<std::string>::const_iterator i = m_gamespec.addon_paths.begin();
i != m_gamespec.addon_paths.end(); i++)
m_modspaths.push_front((*i) + DIR_DELIM + "mods");
// Add simple user mod search path
m_modspaths.push_front(porting::path_user + DIR_DELIM + "mods"
+ DIR_DELIM + m_gamespec.id);
// Print out mod search paths
for(core::list<std::string>::Iterator i = m_modspaths.begin();