rename extension names

This commit is contained in:
moehreag 2024-06-10 11:59:35 +02:00
parent bcc9fea5f9
commit 15f47d822b
2 changed files with 5 additions and 5 deletions

View file

@ -17,5 +17,5 @@ depends = [
]
[frog.extensions]
mixin_config = "$mod_id.mixins.json"
mixin = "$mod_id.mixins.json"
main = "$maven_group.$mod_name_pascalMain"

View file

@ -31,10 +31,10 @@ provides = [
]
[frog.extensions] # key-value pairs for whatever else is needed (Entrypoints, custom values, lists of files, indicators...)
mixin_config = "example_mod.mixins.json"
frog_aw = "example_mod.accesswidener"
pre_launch = "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.
mixin = "example_mod.mixins.json"
accesswidener = "example_mod.accesswidener"
prelaunch = "com/example/frog/PreLaunch"
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.
You should never need to insert them yourself.