You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the beet_default of a custom plugin, the config values for data_pack and resource_pack are not inserted into the ctx.data and ctx.assets fields respectively. The config values are currently not available except for the internal plugin that generates the output (i.e. the pack.mcmeta file).
Example:
beet.yaml
data_pack:
name: My Data Packdescription: a data packload: srcpack_format: 6supported_formats: [0,6]pipeline:
- custom_plugin
In the
beet_default
of a custom plugin, the config values fordata_pack
andresource_pack
are not inserted into thectx.data
andctx.assets
fields respectively. The config values are currently not available except for the internal plugin that generates the output (i.e. thepack.mcmeta
file).Example:
beet.yaml
custom_plugin.py
Result
This will print out the following (i.e. the default values):
Expected
The values should return the value set in the config:
The text was updated successfully, but these errors were encountered: