Jump to content
  • Home
  • Files
  • Docs
Topics
  • All Content

  • This Topic
  • This Forum

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • Minecraft Forge
  • Releases
  • Forge 35.1 Minecraft 1.16.4
Currently Supported: 1.16.X (Latest) and 1.15.X (LTS)
Sign in to follow this  
Followers 0
LexManos

Forge 35.1 Minecraft 1.16.4

By LexManos, November 20, 2020 in Releases

Recommended Posts

LexManos    1620

LexManos

LexManos    1620

  • Reality Controller
  • LexManos
  • Forge Code God
  • 1620
  • 8967 posts
Posted November 20, 2020

Forge Version: 35.1.4
Minecraft Version: 1.16.4
Downloads:

  • Changelog: (Direct)
  • Installer: (AdFocus) (Direct)
  • MDK: (AdFocus) (Direct)


Intro:
It's that time again, the 1.16.3 to 1.16.4 update is rather trivial for modders. The bulk of mods should just work. I would of posted this as a RB a while ago. But unfortunately I have been delayed because of having to move houses. Which has taken quite a lot of my time. The update was done within 30 mins of Mojang's release, and has been fairly stable fromt he get-go. I just havent had time to write this post and thus haven't done a RB.

 

Changelog:
New:

  • New hook for Axe tools.
  • New hooks for modifying structures and spawn lists.
  • New event when players change game mode.
  • Revived BiomeDictionary, uses RegistryKey's instead of Biome objects as Biomes are now data driven in Vanilla.
  • Added tag support to enchantments, options, and tile entity types.
  • Added signature reporting of Mod jars to the mod list GUI. 
  • Reintroduced name tag distance attribue.
  • Added better auto-detection of ANSI support.
  • Added custom model loader support to data generators.
  • Added codec support for FluidStacks
  • Added support for loading 1.16.3 mods, as they should be inherently compatible. Mods can opt out with special crafted dependency info in their mods.toml.
  • Added better extension point for mods to control server compatibility test on the client.
  • Added player context to AnvilUpdateEvent
  • Added support for custom argument types without breaking vanilla clients.

 

 

Fixes:

  • Fixed vanilla Campfire smoke bug. MC-201374
  • Fixed toggleable keybindings still being active while in GUI Fixes
  • Fixed modded EntityClassifications not being useable in the codec.
  • Fixed log spam related to Object Holders
  • Fixed item tooltips not being screen wrapped anymore.
  • Fixed registry dumps being unsorted.
  • Fixed error when vines grew in certain configurations.
  • Fixed texture loading path.
  • Fixed RCON not sending newlines. MC-7569
  • Fixed RCON not using UTF8
  • Fixed logic error in ITeleporter implementation.
  • Fixed resource leak in OBJ Loader.
  • Fixed unnneded patches caused by crowdsourced names.
  • Fixed java performance issue when loading large modpacks due to java not correctly caching url comparisons.
  • Fixed data driven biomes failing to work with SingleBiomeProvider
  • Fixed custom Forge attributes using invalid translation keys.
  • Fixed concurrency issues with NonNullLazy.Concurrent
  • Fixed config parse failure causing crash.
  • Fixed game state not reverting to vanilla correctly before exiting when early mod events error.
  • Fixed biomes not correctly being assigned ids when loading existing worlds.
  • Fixed early sorting bug that was causing an exception at the wrong time and not correctly showing an error screen.
  • Fixed vanilla clients having log spam when connecting to modded servers with custom attributes.
  • Fixed player not rendering when camera is a different entity.
  • Fixed unpredictable order when adding new entries from a mod to an existing world with that mod.
  • Fixed harvest check event not firing when block doesn't require a tool.
  • Fixed Banner.toItem erroring on servers.
  • Fixed fake players overriding real players advancement tracking.
  • Fixed modded dimensions not loading properly during first run on dedicated servers.
  • Fixed concurrency issue in StartupMessageManager
  • Fixed food bar not rendering when mounted.
  • Fixed removing structures causing chunks to not be saved. MC-194811
  • Like 1

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Patreon: http://www.patreon.com/lexmanos
Paypal: http://paypal.me/LexManos

BitCoin: 1Q8rWvUNMM2T1ZfDaFeeYQyVXtYoeT6tTn

Share this post


Link to post
Share on other sites
Guest
This topic is now closed to further replies.
Sign in to follow this  
Followers 0
Go To Topic Listing



  • Recently Browsing

    No registered users viewing this page.

  • Posts

    • diesieben07
      Question about itemstack capabilities of crafting results

      By diesieben07 · Posted just now

      Yeah, it would be better to just lazily initialize the values in the capability. However AttachCapabilitiesEvent is triggered directly from the ItemStack constructor. So it is impossible to have an ItemStack object and not have AttackCapabilitiesEvent fire for it.
    • Beethoven92
      [1.16] InputEvent.KeyInputEvent never fired

      By Beethoven92 · Posted 5 minutes ago

      They are basically the same. With the annotation method you can also specify the Dist where this event handler will be loaded on. What is wrong with your code is that your method is not declared as static. Take a look here for more info on events: https://mcforge.readthedocs.io/en/latest/events/intro/
    • DARKHAWX
      [1.16] InputEvent.KeyInputEvent never fired

      By DARKHAWX · Posted 18 minutes ago

      Hey there,   I'm trying to setup a basic keybinding, but I can't seem to get the event to fire. Here's my code for subscribing to the event:   @Mod.EventBusSubscriber public class ModKeyInputs { @SubscribeEvent public void onKeyInput(InputEvent.KeyInputEvent event) { if (ModKeyBindings.OPEN_DIVINE_FAVOUR_RELATIONSHIP.isPressed()) { Minecraft.getInstance().displayGuiScreen(new DivineFavourRelationshipsScreen(Minecraft.getInstance().player)); } } }   Now I've put a breakpoint in the method there at the start, and I can never get it to fire. Am I subscribing to this event incorrectly?   As a side note, is there much difference between using @Mod.EventBusSubscriber on a class versus MOD_EVENT_BUS.register(ModKeyInputs.class); in the constructor of the main mod class?
    • Tavi007
      Question about itemstack capabilities of crafting results

      By Tavi007 · Posted 19 minutes ago

      just two maps and two strings. I use json files, so anyone can override them with datapacks. Basically each item, that should have default values, also has a corresponding json file. (if an item does not have a corresponding json file, then it will get default default values.)   The information in the files are loaded into a Map<ResourceLocation, DataFromJson> once when the server starts, so i can get them whenever i need them. When the attach event (or the item craft event) trigger i resolve the resourceLocation, get the DataFromJson and then set the itemstack capability. As long as the Map doesn't get humongous, this method shouldn't be a performance issure.
    • StormyRiley1
      When I generate a world it stays at 100%

      By StormyRiley1 · Posted 23 minutes ago

      https://drive.google.com/file/d/1uhUglwuMq_nroPQpDWXsBxggv9MwzXyS/view?usp=sharing there you go
  • Topics

    • DARKHAWX
      2
      [1.16] InputEvent.KeyInputEvent never fired

      By DARKHAWX
      Started 18 minutes ago

    • Tavi007
      3
      Question about itemstack capabilities of crafting results

      By Tavi007
      Started 53 minutes ago

    • StormyRiley1
      4
      When I generate a world it stays at 100%

      By StormyRiley1
      Started 12 hours ago

    • Fizedi
      0
      Loot table change for chest in plains house

      By Fizedi
      Started 50 minutes ago

    • diseasedworm
      1
      A problem occurred running the Server launcher.java.lang.reflect.InvocationTargetException

      By diseasedworm
      Started 5 hours ago

  • Who's Online (See full list)

    • Tavi007
    • StormyRiley1
    • diesieben07
    • troublemaker_47
    • samjviana
    • Beethoven92
    • randomdude12300
    • red-pxl
    • DARKHAWX
    • Fizedi
    • Choonster
    • CookieLukas
    • forgnog
  • All Activity
  • Home
  • Minecraft Forge
  • Releases
  • Forge 35.1 Minecraft 1.16.4
  • Theme

Copyright © 2019 ForgeDevelopment LLC · Ads by Longitude Ads LLC Powered by Invision Community