From ebd5a6a5dcaf4e7cc7d4e1e7214b3d2b580ce2f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Sat, 2 Nov 2013 16:16:19 +0100 Subject: [PATCH] don't mount the mod folders at all for make docs fixes #3873 --- OpenRA.Utility/Command.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/OpenRA.Utility/Command.cs b/OpenRA.Utility/Command.cs index 0e6db9e29d..76abcf1eb4 100644 --- a/OpenRA.Utility/Command.cs +++ b/OpenRA.Utility/Command.cs @@ -338,11 +338,6 @@ namespace OpenRA.Utility public static void ExtractTraitDocs(string[] args) { Game.modData = new ModData(args[1]); - - FileSystem.UnmountAll(); - foreach (var dir in Game.modData.Manifest.Folders) - FileSystem.Mount(dir); - Rules.LoadRules(Game.modData.Manifest, new Map()); Console.WriteLine("## Documentation");