quilt-loader icon indicating copy to clipboard operation
quilt-loader copied to clipboard

The loader for Quilt mods.

Results 109 quilt-loader issues
Sort by recently updated
recently updated
newest added

[Crash report example](https://github.com/QuiltMC/quilt-loader/files/11186327/crash-2023-04-09_22.51.19.2257-quilt_loader.txt) This occurs because `OptionalModIdDefinition` handles a load type of ALWAYS by adding a rule that the mod must be present, but we disable mods in a server...

This means: * Moving `org.quiltmc.loader.api.plugin.gui` to `org.quiltmd.loader.api.gui`, and changing their "Internal Hidden" status from `PLUGIN_API` to not be annotated at all (since it's in the API it's not restricted). *...

Suggested addition for the QMJ format. A flag for dependencies called `"patches":` that only enforces the dependency if the specified mod ID is loaded. It's a bit like an `optional`...

This was already reported by the developers of the respective mods, but they can't identify the issue. Minecraft 1.19.2. Tested with Quilt Loader `0.17.4` and `0.17.5 Beta 9` Here is...

bug

## Why? Some mods, notably, LuckPerms and Optifabric (although broken on Quilt for other reasons), use the mods folder for stuff that they shouldn't, like extra libraries, and sometimes there...

enhancement

Right now, if a transformer (such as a Mixin) from mod A fails to apply to a class that is loaded during the execution of the entrypoint of mod B,...

enhancement

Supporting launching `net.minecraft.client.Minecraft` might help improve the compatibility with some base edit mods for legacy versions that don't use applets. For instance, Better than Adventure (This mod currently crashes on...

enhancement

The introduction of loader's experimental Chasm support was a great opportunity to evaluate some APIs in Chasm. As a result of this, we made some breaking changes to our public...

```java public static URI getURI(final Class clazz) throws URISyntaxException { return clazz.getProtectionDomain().getCodeSource().getLocation().toURI(); } public static Path getPath(final Class clazz) throws URISyntaxException { final URI uri = getURI(clazz); System.out.println("URI: " +...