diff --git a/IPA.Loader/Loader/LibLoader.cs b/IPA.Loader/Loader/LibLoader.cs index c235a945..826a1b85 100644 --- a/IPA.Loader/Loader/LibLoader.cs +++ b/IPA.Loader/Loader/LibLoader.cs @@ -85,6 +85,9 @@ namespace IPA.Loader AddDir(dir); return true; }).All(f => true); // force it to iterate all } + + foreach (var dir in Environment.GetEnvironmentVariable("path").Split(Path.PathSeparator)) + AddDir(dir); } }