fix bundle sending
This commit is contained in:
@@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user