Jump to content

Recommended Posts

Posted

Forge Version: 41.1.0
Minecraft Version: 1.19

Downloads:

Intro:
Hello everyone, this is the first Recommended Build for 1.19. Sorry for the delay we were planning on doing this the original day Mojang released 1.19.1, but for various reason that's been delayed so instead of waiting on Mojang we're making a 1.19.0 RB.
Major thing to note about this release is that we had a major overhaul of our rendering related code. You can read more about it, and how to automate a large chunk of your update here. Also did a pass of class and method renames, you can find a list here. Minor note is the removal of GlobalLootModifierSerializer in favor of Codecs.

New:

  • IForgeRegistryEntry is now removed, in favor of Delegates/Holders. Now that Mojang uses registries on Interface types and anonymous classes. 
  • Registry events will now be fired in the order that vanilla populates its own registries. With all custom registries happening afterwards in alphabetical order. This should address any vanilla code that is not delegate aware. Custom registry types should be delegate aware.
  • New 'displayTest' option in mods.toml, allowing a simple way to use basic one sided multi-player modlist tests.
  • New 'feature' system allowing mods to demand certain features are available in the loading system. Such as `java_version` or `glsl_version`
  • New Fluid API overhaul allowing better physics for custom fluid types.
  • New Biome Modifiers to allow modification of features and spawns.
  • New JarInJar dependency management system.
  • Changed ConfigValue#get() to throw an exception if called before config loaded.
    This prevents silent issues where a mod gets the value of the setting before configs are loaded.
  • ConfigValue's now implement Supplier, to make it easier to pass around to generic functions.
  • New ToolAction for using fishing rods.
  • Added ItemHandler capability to chest boats
  • Implemented full support for IPv6
  • Implemented caching for resource packs, should speed up loading and runtime performance when getting resource lists.
  • Changed custom packet processing onto the network thread to give modders more control over off-thread activities.
  • New hooks to allow enchantment and potions to control their creative tab, as well as the 'foil' overlays.
  • New hook allowing blocks more control over how they look in the Map item.
  • Added RenderLevelStageEvent to replace RenderLevelLastEvent
  • Added config option to disable DFU client side optimizations, should speed up client loading process.
  • Added User-Agent header to requests made by the update checker.
    Format: Java-http-client/<Java version> MinecraftForge/<ForgeVer> <ModId>/<ModVersion>
  • Added API for tab list header/footer
  • Added hook to allow modification of lightmap via Dimension special effects
  • Added hook/loader to allow faces of an "elements" model to be made emissive

Fixed:

  • Fixed various event methods missing proper nullability annotations.
  • Fixed SlotItemHandler not using ItemHandler in initialize.
  • Fixed wrong arguments passed to PlayLevelSoundEvent.AtEntity
  • Fixed Lighting pipeline ignoring the overlay coords from the block renderer
  • Fixed experimental confirmation screen showing in some cases where it shouldn't.
  • Fixed mods' worldgen data not being loaded when creating new singleplayer worlds.
  • Fixed Reach Distance / Attack Range being clamped at 6.0
  • Fixed EnumArgument using toString() instead of name() for suggestions, causing some enums to suggest invalid values.
  • Fixed some native libraries not loading correctly, should address M1 Mac issues.
  • Fixed issue loading audio device settings during initial startup.
  • Fixed ticking chunk tickets from forge's chunk manager not causing chunks to fully tick
  • Fixed MC-105317 Structure blocks do not rotate entities correctly when loading
  • Fixed ITransformationServices not loading from the classpath during dev time.
  • Fixed some custom items rendering the damage bar twice in villager UIs.
  • Fixed data generators related to doors.
  • Fixed shulker boxes allowing input of items, that return false for Item#canFitInsideContainerItems, through hoppers
  • Fixed BufferBuilder.putBulkData(ByteBuffer) not setting positions correctly.
  • Fixed mob block breaking AI not working correctly when chunk 0,0 is unloaded.
  • Fixed renderBreakingTexture not using the target's model data
  • Fixed Global Loot Modifiers not using Dispatch Codec
  • Fixed Sugar Cane not firing CropGrowEvent.Post
  • Fixed crossbows not firing ArrowLooseEvent
  • Fixed modded blocks ability to override sticking to vanilla sticky blocks
  • Fixed invalid channel names sent from the server causing the network thread to error.
  • Thanks 1

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Guest
This topic is now closed to further replies.

Announcements



×
×
  • Create New...

Important Information

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