-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Blockmap Resource Pack Sound Overrides Not Functioning Correctly #353
Comments
Forgot to mention it does the same for fabric and forge with sinytra, and that both were in 1.20.1 |
Tags have lower priority than specific block ids. So if you have a sound mapping for a tag and a block within that tag, the sound for the named block will be used instead. I'll have to see how I can possibly fix the overrides issue when it comes to resource packs. I did previously have the built in sounds loaded as a resource pack that people can enable/disable or change the order, but the built-in pack functionality in Quilt is buggy and I've had a lot of issues reported due to it so I've decided to revert back to having the sounds built into the mod instead. |
The load order was reversed (due to a previous issue). After switching it around to the correct order it's now working correctly, the below resource pack properly changes leaves to wood and grass to stone when placed at the top of the list.
Note that what I said before will still apply after the update, so pale oak leaves will still have their own sounds as they specify one that takes precedence over the tag. You'd have to manually redeclare it like this:
|
Great ! Thanks for the fast answer ! |
Issue Summary:
Greetings. I am encountering an issue while customizing the mod via a resource pack when running it through the Sinytra connector. Specifically, certain sound overrides in the blockmap do not function as expected.
Details of the Issue:
Resource Pack Sound Override Behavior:
Problematic Cases:
minecraft:grass_block
: Attempts to override the sound for this block are ignored. Despite the changes in the resource pack, the block continues to use the mod's default sound configuration.#minecraft:nylium
: Overrides for the tag#minecraft:nylium
do not work. However, directly targeting individual blocks within the tag (e.g.,minecraft:crimson_nylium
) functions as expected.Observed Behavior:
minecraft:grass_block
and those within the#minecraft:nylium
tag continue to produce the sounds specified by the mod, ignoring customizations defined in the resource pack.Working Cases:
minecraft:crimson_nylium
directly (not via tag), the sound override behaves as intended.Environment Information:
Request for Clarification and Assistance:
minecraft:grass_block
or#minecraft:nylium
)?Thank you for your time and expertise. I look forward to your insights on resolving this issue.
The text was updated successfully, but these errors were encountered: