fix bundle sending

This commit is contained in:
CWX
2025-02-10 20:38:12 +00:00
parent aabd9cef6c
commit 7d9e7f0727
6 changed files with 43 additions and 22 deletions
+6 -2
View File
@@ -10,7 +10,6 @@ public class Bundle : IPostDBLoadMod
{
private readonly BundleLoader _bundleLoader;
public Bundle(
BundleLoader bundleLoader)
{
@@ -19,6 +18,11 @@ public class Bundle : IPostDBLoadMod
public void PostDBLoad()
{
_bundleLoader.AddBundles("/user/mods/Mod3");
// must be a relative path.
// for example "./user/mods/Mod3"
// . being the server.exe or root directory
// follow all the way to your mods folder name
// you will be only changing from "./user/mods/" onwards
_bundleLoader.AddBundles("./user/mods/Mod3");
}
}