Skip to content

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
shartte committed Nov 2, 2023
1 parent 04249e7 commit c737752
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/appeng/mixins/EarlyStartupMixin.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public abstract class EarlyStartupMixin {

// Don't inject at TAIL because Citadel (possibly other mods too) cause bootStrap() to invoke itself,
// and we don't want this to be invoked from the nested call since MC isn't fully initialized by then.
@Inject(at = @At(value = "INVOKE", target = "net/minecraftforge/registries/GameData. vanillaSnapshot()V", shift = At.Shift.AFTER, by = 1), method = "bootStrap")
@Inject(at = @At(value = "INVOKE", target = "net/neoforged/neoforge/registries/GameData.vanillaSnapshot()V", shift = At.Shift.AFTER, by = 1), method = "bootStrap")
private static void initRegistries(CallbackInfo ci) {
AppEngBootstrap.runEarlyStartup();
}
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
modLoader="javafml"
loaderVersion="[44,)"
loaderVersion="[1,)"
#updateJSONURL=""
issueTrackerURL="https://github.com/AppliedEnergistics/Applied-Energistics-2/issues"
displayURL="https://github.com/AppliedEnergistics/Applied-Energistics-2"
Expand All @@ -15,7 +15,7 @@ displayName="Applied Energistics 2"
description="A Mod about Matter, Energy and using them to conquer the world.."

[[dependencies.ae2]]
modId="forge"
modId="neoforge"
mandatory=true
versionRange="${neoforge_version}"
ordering="NONE"
Expand Down

0 comments on commit c737752

Please sign in to comment.