Immersive Melodies [Fabric/Forge]

Immersive Melodies [Fabric/Forge]

2M Downloads

Cannot craft Tiny Drum

Faraday223 opened this issue ยท 1 comments

commented

Describe the bug
When trying to craft a tiny drum, the recipe calls for "Empty Tag: minecraft:log" and cannot be crafted.

Latest.log
latest.log [client]
latest.log [Server]

To Reproduce
Use JEI or similar to look for modded item

Expected behavior
Empty tag should have rotating log types in its place
Screenshots
2024-06-15_02 50 33

commented

While the maintainer does not merge PR #61, you can use this small KubeJS script to fix it yourself. Simply place it in <minecraft-folder>/kubejs/server_scripts/fix_tiny_drum.js:

ServerEvents.recipes(event => {
    event.remove({ output: "immersive_melodies:tiny_drum" });

    event.shaped(
        Item.of("immersive_melodies:tiny_drum"),
        [
            "LLL",
            "SWS",
        ],
        {
            L: "minecraft:leather",
            S: "minecraft:string",
            W: "#minecraft:logs"
        }
    );
});

It goes without saying that if you are playing in multiplayer, it needs this too. And that you need to be using KubeJS.