Item Obliterator (Modpack Utils Series)

Item Obliterator (Modpack Utils Series)

15M Downloads

[Feature/fix] Changing config files to JSON for KubeJS compatibility

Rimevel opened this issue · 2 comments

commented

When making modpacks, recipe removal can be very streamlined using KubeJS and EMI like this:

function removeNBT(id) {
    return id.replace(/\{[^}]*\}/g, "");
}

ServerEvents.recipes((event) => {
    let emi = JsonIO.read("emi.json");
    let list = [];

    emi.hidden_stacks.forEach((id) => {
        let segments = removeNBT(id).split(":");
        list.push(`${segments[1]}:${segments[2]}`);
    });

    event.remove({ output: list });
});

This script allows easily removing recipes of any item that was clicked on in EMI while hiding mode is toggled.

Now if this mods config would be JSON instead of JSON5, then this streamlining could be supercharged with all the Item Obliterator features:

//Replacing the "event.remove" line
let obl = JsonIO.read("config/item_obliterator.json");
obl.blacklisted_items = list;
JsonIO.write("config/item_obliterator.json", obl);
commented

I knew it was a bit of a controversial take. I will make an issue over at KubeJS. Have a good day!

commented