rename extension names
All checks were successful
Publish to snapshot maven / build (push) Successful in 16s
All checks were successful
Publish to snapshot maven / build (push) Successful in 16s
This commit is contained in:
parent
d8289deea7
commit
f1482d94b4
|
@ -11,7 +11,7 @@ credits = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[frog.extensions]
|
[frog.extensions]
|
||||||
pre_launch = "dev.frogmc.frogloader.example.ExamplePreLaunchExtension"
|
prelaunch = "dev.frogmc.frogloader.example.ExamplePreLaunchExtension"
|
||||||
mixin_config = "example_mod.mixins.json"
|
mixin = "example_mod.mixins.json"
|
||||||
frog_aw = "example_mod.accesswidener"
|
accesswidener = "example_mod.accesswidener"
|
||||||
|
|
||||||
|
|
|
@ -11,5 +11,5 @@ credits = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[frog.extensions]
|
[frog.extensions]
|
||||||
pre_launch="dev.frogmc.example.ExampleTestMod"
|
prelaunch="dev.frogmc.example.ExampleTestMod"
|
||||||
|
|
||||||
|
|
|
@ -4,9 +4,9 @@ import lombok.experimental.UtilityClass;
|
||||||
|
|
||||||
@UtilityClass
|
@UtilityClass
|
||||||
public class BuiltinExtensions {
|
public class BuiltinExtensions {
|
||||||
public final String MIXIN_CONFIG = "mixin_config";
|
public final String MIXIN_CONFIG = "mixin";
|
||||||
public final String INCLUDED_JARS = "included_jars";
|
public final String INCLUDED_JARS = "included_jars";
|
||||||
public final String PRE_LAUNCH = "pre_launch";
|
public final String PRE_LAUNCH = "prelaunch";
|
||||||
public final String ACCESSWIDENER = "frog_aw";
|
public final String ACCESSWIDENER = "accesswidener";
|
||||||
public final String LOADING_TYPE = "loading_type";
|
public final String LOADING_TYPE = "loading_type";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue