d545233
--- vegastrike-0.4.3/src/python/init.cpp~	2007-04-23 20:30:02.000000000 +0200
d545233
+++ vegastrike-0.4.3/src/python/init.cpp	2007-04-23 20:30:02.000000000 +0200
d545233
@@ -226,7 +226,6 @@
d545233
   // Find all the mods dir (ignore homedir)
d545233
   for( int i=1; i
d545233
   {
d545233
-	  modpaths += "r\""+VSFileSystem::Rootdir[i]+"/modules/builtin/\",";
d545233
 	  modpaths += "r\""+VSFileSystem::Rootdir[i]+"/"+moduledir+"/\",";
d545233
 	  modpaths += "r\""+VSFileSystem::Rootdir[i]+"/"+basesdir+"/\"";
d545233
 	  if( i+1
d545233
@@ -237,7 +236,7 @@
d545233
   while ((backslash=modpaths.find("\\"))!=std::string::npos) {
d545233
      modpaths[backslash]='/';
d545233
      }*/
d545233
-   std::string changepath ("import sys\nprint sys.path\nsys.path = ["+modpaths+"]\n");
d545233
+   std::string changepath ("import sys\nprint sys.path\nsys.path += ["+modpaths+"]\n");
d545233
   /*
d545233
    std::string changepath ("import sys\nprint sys.path\nsys.path = ["
d545233
 			  "\""+VSFileSystem::datadir+DELIMSTR"modules"DELIMSTR"builtin\""