fix more renames

This commit is contained in:
moehreag 2024-06-02 20:50:47 +02:00
parent a62114b201
commit f197ebca4b
3 changed files with 5 additions and 5 deletions

View file

@ -19,7 +19,7 @@ breaks = [
] ]
[frog.extensions] [frog.extensions]
pre_launch = "example.org.ecorous.frogmc.frogloader.ExamplePreLaunchExtension" pre_launch = "org.ecorous.frogmc.frogloader.example.ExamplePreLaunchExtension"
mixin_config = "example_mod.mixins.json" mixin_config = "example_mod.mixins.json"
frog_aw = "example_mod.accesswidener" frog_aw = "example_mod.accesswidener"

View file

@ -25,7 +25,7 @@ import org.spongepowered.asm.mixin.MixinEnvironment;
public class LoaderImpl implements Loader { public class LoaderImpl implements Loader {
// TODO decide this // TODO decide this
public static final String MOD_FILE_EXTENSION = ".frogmod"; public static final String MOD_FILE_EXTENSION = ".frogmod";
private final boolean DEV_ENV = Boolean.getBoolean("nonsense.development"); private final boolean DEV_ENV = Boolean.getBoolean("frogmc.development");
@Getter @Getter
private final String[] args; private final String[] args;

View file

@ -40,8 +40,8 @@ public class Launcher {
targetClassLoader.excludePackage("org.slf4j"); targetClassLoader.excludePackage("org.slf4j");
targetClassLoader.excludePackage("org.spongepowered"); targetClassLoader.excludePackage("org.spongepowered");
targetClassLoader.excludePackage("org.apache.logging"); targetClassLoader.excludePackage("org.apache.logging");
targetClassLoader.excludePackage("org.ecorous.esnesnon.nonsense.loader.impl.launch"); targetClassLoader.excludePackage("org.ecorous.frogmc.frogloader.impl.launch");
targetClassLoader.excludePackage("org.ecorous.esnesnon.nonsense.loader.api.env"); targetClassLoader.excludePackage("org.ecorous.frogmc.frogloader.api.env");
Thread.currentThread().setContextClassLoader(targetClassLoader); Thread.currentThread().setContextClassLoader(targetClassLoader);
@ -49,7 +49,7 @@ public class Launcher {
MixinBootstrap.init(); MixinBootstrap.init();
try { try {
Class<?> clazz = targetClassLoader.findClass("impl.org.ecorous.frogmc.frogloader.LoaderImpl"); Class<?> clazz = targetClassLoader.findClass("org.ecorous.frogmc.frogloader.impl.LoaderImpl");
MethodHandle ctor = MethodHandles.publicLookup().findStatic(clazz, "run", MethodType.methodType(void.class, String[].class, Env.class)); MethodHandle ctor = MethodHandles.publicLookup().findStatic(clazz, "run", MethodType.methodType(void.class, String[].class, Env.class));
ctor.invoke(args, env); ctor.invoke(args, env);
} catch (Throwable e) { } catch (Throwable e) {