Open Loader

Open Loader

21M Downloads

Request: Allow config option to make packs be able to be turned off

Vazkii opened this issue ยท 3 comments

commented

My modpack ships with 2 built-in non-essential, resource packs. It would be great if they could be turned off in the menu while still enabled by default.

commented

I implemented this using the pack.mcmeta file. You can also change load priority but you probably don't need it.

Value Desc Default Valid Options
builtin Whether or not the pack is non-disableable. true true / false
priority The load priority of the pack. top top / bottom

example

{
    "pack": {
        "pack_format": 6,
        "description": "Test Resource Pack"
    },
    "openloader": {
        "builtin": false
    }
}

https://www.curseforge.com/minecraft/mc-mods/open-loader/files/3198395

commented

This doesn't fully fix the issue. Setting "builtin" to false also makes the pack be disabled by default.

commented

@Vazkii The vanilla resource pack system really isn't designed to handle that use case as the "allow disabling" and "enabled by default" mechanics are tied together. I've released a new beta which uses a few mixins to try and get this working though. There is now a defaultEnabled property which defaults to true.

Let me know if you encounter any issues or have any ideas on how to improve the implementation.