rename extension names
This commit is contained in:
parent
bcc9fea5f9
commit
15f47d822b
|
@ -17,5 +17,5 @@ depends = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[frog.extensions]
|
[frog.extensions]
|
||||||
mixin_config = "$mod_id.mixins.json"
|
mixin = "$mod_id.mixins.json"
|
||||||
main = "$maven_group.$mod_name_pascalMain"
|
main = "$maven_group.$mod_name_pascalMain"
|
||||||
|
|
|
@ -31,10 +31,10 @@ provides = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[frog.extensions] # key-value pairs for whatever else is needed (Entrypoints, custom values, lists of files, indicators...)
|
[frog.extensions] # key-value pairs for whatever else is needed (Entrypoints, custom values, lists of files, indicators...)
|
||||||
mixin_config = "example_mod.mixins.json"
|
mixin = "example_mod.mixins.json"
|
||||||
frog_aw = "example_mod.accesswidener"
|
accesswidener = "example_mod.accesswidener"
|
||||||
pre_launch = "com/example/frog/PreLaunch"
|
prelaunch = "com/example/frog/PreLaunch"
|
||||||
load_type = "required" # the type 'required' is implicit if it isn't present. Other values are not specified, but using 'optional' is recommended.
|
loading_type = "required" # the type 'required' is implicit if it isn't present. Other values are not specified, but using 'optional' is recommended.
|
||||||
```
|
```
|
||||||
These keys are automatically inserted by [Phytotelma](/contributing/tools#phytotelma) for generated metadata files and their host mods respectively.
|
These keys are automatically inserted by [Phytotelma](/contributing/tools#phytotelma) for generated metadata files and their host mods respectively.
|
||||||
You should never need to insert them yourself.
|
You should never need to insert them yourself.
|
||||||
|
|
Loading…
Reference in a new issue