[3228]Enable the openGui data longer than 128 bits
warning! break the network compat with old forge server/client. https://github.com/MinecraftForge/MinecraftForge/issues/3228
Two problem:
- You don't need to call net.minecraftforge.common.MinecraftForge.EVENT_BUS.post in Forge code, just import it (doing so in vanilla patches is fine)
- I am not sure if we should break this before release, need further discussion
You don't need to call net.minecraftforge.common.MinecraftForge.EVENT_BUS.post in Forge code, just import it (doing so in vanilla patches is fine)
This part may have belonged to the patch before. It is not a part of FMLNetworkHandler. https://github.com/MinecraftForge/FML/blob/master/src/main/java/net/minecraftforge/fml/common/network/internal/FMLNetworkHandler.java#L92
I am not sure if we should break this before release, need further discussion
We can also handle it separately without break it?