glowredman

Results 9 issues of glowredman

Version 1.0.3 is not available at[ bspk.rs](http://bspk.rs/MC/MCPMappingViewer/index.html) nor on the [Minecraft Forum](https://www.minecraftforum.net/forums/mapping-and-modding-java-edition/minecraft-tools/1265548-mcp-mapping-viewer). Although the jar/exe can be built from source, many people won't realize that the tool has been updated...

Fixes https://github.com/GTNewHorizons/NotEnoughItems/issues/267 with wand: ![grafik](https://user-images.githubusercontent.com/35727266/179304667-d7852fb6-ecf2-4030-959b-3c4c9e1ea2b9.png) without wand: ![grafik](https://user-images.githubusercontent.com/35727266/179304991-738a1fbf-929d-4641-968f-a4736443d6cb.png) Also updates: - Gradle to version 4.4.1 - Forge to version 10.13.4.1614

(From the pack design doc) Most work has already been done in order to create an MMC archive. The Modrinth archive specifications can be found [here](https://docs.modrinth.com/docs/modpacks/format_definition/). Publishing a new release...

`net.minecraft.village.MerchantRecipeList` currently just extends `java.util.ArrayList`, it should probably extend `java.util.ArrayList` though.

Eclipse currently analyzes all classes in the `build/rfg/minecraft-src/java` path because it's not an external dependency. All warnings and errors are shown when reading that code, which is somewhat annoying.

The plugin is used to comnpile LiteLoader mods. FG1.2 implementation (doesn't work): FG2.3 implementation:

enhancement

May or may not have been responsible for the autotransition to the new MouseTweaks config format not working in some cases. `LMBTweakWithItem` is excluded.

Probably similar to #144. ``` java.lang.ClassCastException: class twilightforest.client.renderer.entity.RenderTFTinyFirefly cannot be cast to class dev.tr7zw.entityculling.mixin.RenderLivingEntityAccessor (twilightforest.client.renderer.entity.RenderTFTinyFirefly and dev.tr7zw.entityculling.mixin.RenderLivingEntityAccessor are in unnamed module of loader 'RFB-Launch' @247d8ae) at RFB-Launch//net.minecraft.client.renderer.entity.RenderManager.handler$zbf000$entityculling$doRenderEntity(RenderManager.java:531) at RFB-Launch//net.minecraft.client.renderer.entity.RenderManager.func_147939_a(RenderManager.java) at...

PlayerAPI replaces the `setSprinting(boolean)` method with this: ```java public void func_70031_b(boolean var1) { ClientPlayerAPI.setSprinting(this, var1); } ``` The original method seems to be renamed: ```java public final void localSetSprinting(boolean p_70031_1_)...