Jump to content

Recommended Posts

Posted

Forge version: 49.2.0
Minecraft version: 1.20.4

Downloads:

Intro:

Today we release our second recommended build for 1.20.4. Along with its siblings 1.20.1 and 1.20.6, Forge 47 has continued to receive several updates that keep it in a good state. This new build of contains a handful of backported convenience features for modders, but also contains many cleanups and bugfixes as well.

As the 1.21 lifecycle of Minecraft continues to stabilize, we will continue to maintain active support for the 1.20 versions of the game as described by our tiered support system. This means that until Minecraft 1.22 is released, we will continue to make 1.20 a target for backports, bug fixes, and applicable new features.

New:

  • Unlock wrapped registries when firing register events (#10036)
  • Make HangingSignBlockEntity useable with custom BlockEntityTypes, backport of #10038
  • Optionally supply FMLJavaModLoadingContext as a param to mod constructors, backport of #10074 (#10099)
    • Before:
      public MyMod() {
          // getting the mod bus - uses FMLJavaModLoadingContext
          var modBus = FMLJavaModLoadingContext.get().getModEventBus();
       
          // registering configs - uses ModLoadingContext
          ModLoadingContext.get().registerConfig(/* ... */);
          // ...
      }
    • After:
      public MyMod(FMLJavaModLoadingContext context) {
          // getting the mod bus
          var modBus = context.getModEventBus();
      
          // registering configs
          context.registerConfig(/* ... */);
          // ...
      }
  • Minor cleanup to ModListScreen and VersionChecker, backport of #9988 (#10089)
  • Backport some Vanilla 1.21 `ResourceLocation` methods (#10098, #10427)
  • Change tick event to have pre/post classes, backport of #9890 (#10090)
  • Use the new fire() and Result#isAllowed/isDenied/isDefault methods from EventBus, backport of #10028 (#10097)
  • Bump CoreMods to 5.2.4, which adds new features such as ES6, better documentation, and long-awaited bug fixes (changelog, #10264)
  • Skip processing Forge classes in `RuntimeDistCleaner` (#10209)
  • Skip processing Forge classes in `RuntimeEnumExtender` (#10217)
  • Skip processing Vanilla classes in the `CapabilityTokenSubclass` transformer (#10222)
  • Deprecate `@ObjectHolder` and skip processing internal classes which do not use it (#10229)
  • Simplify memory usage display on loading screen (#10234)
  • Add a way to render tooltips from Formatted text and TooltipComponents elements, backport of #10056 (#10290)
  • Add various extensions to GameTestHelper to make writing game tests easier (#10343)
  • Update Gradle to 8.12.1, reflected in MDK (#10356)
  • Add VillagerType#registerBiomeType (#10358)
  • Add fast graphics render type to block model jsons, fixes #10389 (#10398)
  • Bump various dependencies, which include further cleanup and optmizations (#10387)
    • One notable dependency bump is EventBus, which includes:
      • Reduced memory usage
      • Further performance improvements
      • Unregistered listeners are now immediately reclaimable by the garbage collector, fixes EventBus#39
  • Add '#forge:chorus_additionally_grows_on' tag for similar mechanics to '#minecraft:azalea_grows_on' but for chorus (#10462)
  • Speed up mod annotation scanning by ~30% (#10469)
    • This was done by using the ClassReader flags SKIP_CODE, SKIP_DEBUG, and SKIP_FRAMES

Fixed:

  • Fix falling block entities not rendering as moving blocks, backport of #10006 (#10017)
  • Choose the default JarJar mod file type based on the parent Jar, fixes #8878 (#10022)
  • Add missed @user_jvm_args.txt to run.bat (#10093)
  • Cleanup FML Bindings which fixes some minor bugs, backport of #10004 (#10088)
  • Remove unneeded boat patch, backport of #10061 (#10087)
  • Add optional fix of use item duration, disabled by default and found in the server config (#10247)
  • Add client config to allow mipmap lowering to be disabled, fixes #10155, (#10253)
  • Fix boat travel distance being incorrect, fixes #9997 (#10292)
  • Fix finalizeSpawn's return value not being used correctly (#10302)
  • Fix non-passengers being tickable without checking canUpdate() (#10303)
  • Fix issues in VillagerTrades.EmeraldsForVillagerTypeItem related to custom Villager Types (#10358, #10426)
  • Fix issue with shields not disabling correctly (#10320)
    • This also fixes a long-standing bug since 1.19 where the Warden would be unable to disable shields.
  • Fix incorrect method reference in TntBlock.explode() (#10330)
  • Fix corrupted and invalidly symlinked worlds crashing on level select (#10438)
  • Cache this.useItem before running item break logic, fixes #10344 (#10375, #10452)

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.