Skip to content

Commit

Permalink
Renamed mods.toml to neoforge.mods.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
LatvianModder committed May 23, 2024
1 parent 17ccfa0 commit f8b5978
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import net.neoforged.api.distmarker.Dist;
import net.neoforged.bus.api.EventPriority;
import net.neoforged.bus.api.IEventBus;
import net.neoforged.fml.ModContainer;
import net.neoforged.fml.common.Mod;
import net.neoforged.fml.event.lifecycle.FMLCommonSetupEvent;
import net.neoforged.fml.event.lifecycle.FMLLoadCompleteEvent;
Expand All @@ -43,7 +44,7 @@ public class KubeJSEntryPoint {

private static final ThreadLocal<IEventBus> BUS = new ThreadLocal<>();

public KubeJSEntryPoint(IEventBus bus) throws Throwable {
public KubeJSEntryPoint(IEventBus bus, Dist dist, ModContainer container) throws Throwable {
bus.addListener(EventPriority.LOW, KubeJSEntryPoint::loadComplete);
bus.addListener(EventPriority.LOW, KubeJSEntryPoint::initRegistries);
bus.addListener(EventPriority.LOW, KubeJSEntryPoint::commonSetup);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
modLoader = "javafml"
loaderVersion = "[2,)"
issueTrackerURL = "https://kubejs.com/support?source=kubejs&mc=2004&loader=neoforge"
issueTrackerURL = "https://kubejs.com/support?source=kubejs&mc=2006&loader=neoforge"
license = "GNU LGPLv3"

[[mods]]
Expand All @@ -17,7 +17,7 @@ license = "GNU LGPLv3"
[[dependencies.kubejs]]
modId = "neoforge"
type = "required"
versionRange = "[20.4.60-beta,)"
versionRange = "[20.6.75-beta,)"
ordering = "NONE"
side = "BOTH"

Expand Down

0 comments on commit f8b5978

Please sign in to comment.