When attempting to use experimental queries such as;
- query.biome_has_any_tag('tag_name')
- query.scoreboard('scoreboard_name')
or any other query that is experimental in the Molang documentation, they break the file they are in.
Update:
- When looking at the content log, the following error occurs when using the biome query:
- ... q.biome_has_any_tag('plains') | unrecognized token: q.biome_has_any_tag('plains')
Expected Behavior:
- Experimental queries work as intended and don't break the files they are in
Actual Behavior:
- Use of experimental queries breaks files
Steps to Reproduce:
- Setup an animation controller or variable that uses an experimental query
- Attempt to do something with that query (switch states in a anim_controller, run an animation in a resource file, etc.)
- It won't work
- Switch the experimental query to something like query.is_sneaking
- The files will no longer be broken and will work