AlexIIL
AlexIIL
> re-implementing all Files methods in it would be convenient Yes, and that's actually a good enough reason to implement them. > identifying future possible improvements to faster filesystems. Not...
I've updated chasm in https://github.com/QuiltMC/quilt-loader/commit/5ed988e417f992df849e26cefc74eea0a01e7384 but I'm having problems running it - is this a problem with the [transformer](https://github.com/QuiltMC/quilt-loader/blob/5ed988e417f992df849e26cefc74eea0a01e7384/minecraft/minecraft-test/src/main/resources/chasm_transformers/title_screen.chasm), how I've implemented Context, or with Chasm itself? [crash-2023-01-27_06.39.29.0805-quilt_loader.txt](https://github.com/QuiltMC/quilt-loader/files/10516177/crash-2023-01-27_06.39.29.0805-quilt_loader.txt)
Thanks for looking through this! > You can use ClassInfo.fromBytes() instead of the constructor Nice, I'll switch over to that. > You are right to throw on IOException, since I...
Fair enough!
Actually this is a strange issue when using a non-headless jvm in a headless environment? I've added a fix to the gui improvements in #385 though, since we don't really...
Realistically this means doing one of the following: - Adding a flag to force a different load order algorithm. - Changing the default load order algorithm to be consistent between...
I recommend against putting non-mod files in your mods folder, as loader plugins might try to load them. However if you don't care about that (none exist now anyway) you...
Can you try updating to loader `0.26.1-beta.1`? I added a few fixes to that version, and I'm not sure which version you're using.
Sorry for the delay - you'll need to change `client` to `client_init` in your `entrypoints` - line 23 in `quilt.mod.json`. (`client` is for fabric-loaders client initializer).
It's backwards compatible with fabric in the sense that you can use `net.fabricmc.api.ClientModInitializer` with the fabric entrypoint `client` - the QSL entrypoint is separate.