Jump to content

Recommended Posts

Posted

Forge version: 45.4.0
Minecraft version: 1.19.4

Downloads:

Intro:

Today, we release our fourth recommended build for 1.19.4. Much like with 1.19.2, Forge 45 has continued to recieve backports from newer versions of Forge. As such, this new build of Forge primarily expands on bug fixes, but also adds a handful of convenience features for modders that were recently introduced (most notably the FMLJavaModLoadingContext parameter).

As always, 1.19.4 remains covered by our tiered support system under legacy support.

New:

  • Unlock wrapped registries when firing register events (#10034)
  • Optionally supply FMLJavaModLoadingContext as a param to mod constructors, backport of #10074 (#10103)
    • 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 (#10104)
  • Bump CoreMods to 5.2.4, which adds new features such as ES6, better documentation, and long-awaited bug fixes (changelog, #10270)
  • Deprecate `@ObjectHolder` and skip processing internal classes which do not use it (#10227)
  • Backport some Vanilla 1.21 `ResourceLocation` methods (#10240, #10429)
  • Add VillagerType#registerBiomeType (#10359)
  • Add `clientSideOnly` feature to mods.toml (backport of #9804, #10366)
  • Add fast graphics render type to block model jsons, fixes #10389 (#10399)
  • Speed up mod annotation scanning by ~30% (#10471)
  • Add '#forge:chorus_additionally_grows_on' tag for similar mechanics to '#minecraft:azalea_grows_on' but for chorus (#10463)

Fixed:

  • Fix falling block entities not rendering as moving blocks, backport of #10006 (#10019)
  • Choose the default JarJar mod file type based on the parent Jar, fixes #8878 (#10024)
  • Cleanup FML Bindings which fixes some minor bugs, backport of #10004 (#10101)
  • Remove unneeded boat patch, backport of #10061 (#10102)
  • Bump JNA to 5.12.1, which fixes native callback issues on macOS (#10187)
  • Add optional fix of use item duration, disabled by default and found in the server config (#10245)
  • Add client config to allow mipmap lowering to be disabled, fixes #10155, (#10251)
  • Fix finalizeSpawn's return value not being used correctly (#10308)
  • Fix non-passengers being tickable without checking canUpdate() (#10305)
  • Fix issue with shields not disabling correctly (#10322)
    • 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() (#10332)
  • Fix issues in VillagerTrades.EmeraldsForVillagerTypeItem related to custom Villager Types (#10359)
  • Ensure NetworkConstants is loaded before mod construction, preventing rare class-loading deadlocks (#10447)
  • Cache this.useItem before running item break logic, fixes #10344 (#10381)

Announcements



×
×
  • Create New...

Important Information

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