fix loading of bundles

This commit is contained in:
CWX
2025-02-10 19:40:35 +00:00
parent c26169f53a
commit e8acef4e75
5 changed files with 48 additions and 37 deletions
+1 -3
View File
@@ -19,8 +19,6 @@ public class Bundle : IPostDBLoadMod
public void PostDBLoad()
{
var modFolder = Directory.GetCurrentDirectory();
var test = Assembly.GetExecutingAssembly().Location;
_bundleLoader.AddBundles(Path.Join(modFolder, "/user/mods/Mod3/"));
_bundleLoader.AddBundles("/user/mods/Mod3");
}
}