Fourmisain
Fourmisain
Refering to https://github.com/Siphalor/mouse-wheelie/issues/111, specifically https://github.com/Siphalor/mouse-wheelie/issues/111#issuecomment-793531338 Having both Mouse Wheelie and RamdomPatches installed breaks Toggle Sneak and Toggle Sprint completely, meaning you cannot switch the states - as if the key...
Based on #37, so it's just https://github.com/Haven-King/Atmosfera/commit/80cbf1bbdc16b74604b3907dcf30b2c086fa9aab and https://github.com/Haven-King/Atmosfera/commit/12498fd6c17ff57b8ac36ad869ddbd3002507d38 (which is optional). General notes: - `new LiteralText()` -> `Text.literal()` - `new TranslatableText` -> `Text.translatable()` - Biome categories are completely gone...
~~Comments coming soon.~~ General notes: - `Tag` and `Tag.Identified` don't exist anymore, they were replaced by `TagKey` - `Tag.contains(thing)` is gone, replaced by `RegistryEntry.isIn(TagKey)` (or high level methods like `BlockState.isIn()`)...
Turned out to be a very straight forward port. Releases to be found here: https://github.com/Fourmisain/Atmosfera/releases/tag/test-v2-mc-1.19.3 https://github.com/Fourmisain/Atmosfera/releases/tag/2.0.0-1.20 Actual changes are all in d76e7292ab2efca1c62c5dc3172fa20560042ff4.
Quick and dirty fix for #60. The particular issue is caused by the VanillaTweaks Armor Statues' book NBT that is part of a loot table that is slightly too large...
## Issue colored-light's [ModelPartMixin](https://github.com/Gegy/colored-lights/blob/4d8a2c333f2868a7fe18fb77aec792d1b9a59742/src/main/java/dev/gegy/colored_lights/mixin/render/entity/ModelPartMixin.java#L18-L32) conflicts with bendy-lib's [IModelPartMixin](https://github.com/KosmX/bendy-lib/blob/13f7b542962056d5342dc62ffc8d69b6eebe84f2/src/main/java/io/github/kosmx/bendylib/mixin/IModelPartMixin.java#L65-L89). Both are trying to redirect the same `ModelPart.renderCuboids()` call. ## Attempt 1 I initially tried solving this by replacing the colored-lights `@Redirect`...
Found this really weird issue that was hard to nail down, I guess it's best to just start with a minimal example. Consider these 2 mixins: ``` @Mixin(Recipe.class) public interface...
I'd like to refer you to the issue on colored-lights's side so I don't have to retype everything: https://github.com/Gegy/colored-lights/issues/13
The characters `'`, `=`, `&`, `` ([source](https://github.com/google/gson/blob/3958b1f78dc2b12da3ffd7426d3fc90550d46758/gson/src/main/java/com/google/gson/stream/JsonWriter.java#L158-L162)) are by default HTML-escaped, so they'll be serialized to something like `\u0027`. This is absolutely not needed for locally stored config files (and...
[IBM Semeru](https://developer.ibm.com/languages/java/semeru-runtimes/downloads/) uses [OpenJ9](https://en.wikipedia.org/wiki/OpenJ9), which is known to be quite memory efficient, making it potentially interesting for large modpacks. The detection code is a straight forward copy of the Eclipse...