From 5cd813a5405777a6c92b1af03f7439a97e9523f8 Mon Sep 17 00:00:00 2001 From: Jason Mitchell Date: Sun, 11 Aug 2024 12:51:41 -0700 Subject: Faster dev boot times (120s --> 80s while profiling) (#2866) * Faster dev boot times (120s --> 80s while profiling) * Clean up sloppy hard deps and properly gate them behind isModLoaded() checks. * Include CoreTweaks as runtime only non publishable for faster boot as well --- src/main/java/bloodasp/galacticgreg/GalacticGreg.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/bloodasp/galacticgreg') diff --git a/src/main/java/bloodasp/galacticgreg/GalacticGreg.java b/src/main/java/bloodasp/galacticgreg/GalacticGreg.java index d48a65c79d..7afda35483 100644 --- a/src/main/java/bloodasp/galacticgreg/GalacticGreg.java +++ b/src/main/java/bloodasp/galacticgreg/GalacticGreg.java @@ -28,7 +28,7 @@ import gregtech.api.world.GT_Worldgen; modid = GalacticGreg.MODID, name = GalacticGreg.MODNAME, version = GalacticGreg.VERSION, - dependencies = "required-after:GalacticraftCore; required-after:gregtech@5.09.32.30;", + dependencies = "after:GalacticraftCore; required-after:gregtech@5.09.32.30;", acceptableRemoteVersions = "*") public class GalacticGreg { -- cgit