Jump to content

Forge 10.13.2 Minecraft 1.7.10


LexManos

Recommended Posts

Forge Version: 1.7.10-10.13.2.1230

Minecraft Version: 1.7.10

Downloads:

 

So, Minecraft 1.8 is out, so is 1.8.1-pre2, 1.8.2 seems to be pending.

1.8 FML has been out for quite a while, but modders seem reluctant to actually stop being lazy and try updating.

So with lack of comments to the contrary I must assume they are okay with the state of FML, which means I can start updating Forge.

Before I update Forge, I wanted to push out a new recomended build for Forge 1.7.10.

So, here it is! It has a lot of new features!

 

Minecraft Forge 10.13.2 Changelog:

============================================================================

New:


  •  
  • Added extra debug information for enchantment conflicts.
     
  • Added ExitVisitor to the TerminalTransformer that finds and intercepts any calls to Runtime.exit or System.exit. Modders DO NOT silently close Minecraft, there are proper mechanics to inform the users why you are shutting down.
     
  • Added event to allow full control over in-world fog rendering.
     
  • Added drainFluidContainer() and getContainerCapacity() helper methods to Fluids.
     
  • Added new hooks to allow modders to better control fishing behavior.
     
  • Added AnvilRepairEvent, fired when the player removes an ItemStack from the output slot of ContainerRepair, and allows the chance to damage the anvil to be altered.
     
  • Added new hooks to allow modders to control the sky's lighting values.
     
  • Added ability for creative tabs that have search bars to customize the text box's width.
     
  • Added ItemStack sensitive version of getItemEnchantability.
     
  • Added protection against mods with broken blocks creating phantom tile entites from other mods with incorrect metadata
     
  • Added 'ModType' manifest option to jar files to allow better interaction between other mod types {liteloader}.
     
  • Added new 'ModList' command argument to supply mod packs via a json file in addition to the base 'mods' folder. See here for more information. Wiki page
     
  • Added new hook to allow for custom beacon consumables.
     
  • Allow injecting alternative container types. This is the core support code for allowing sponge plugins!
     
  • Added STDOUT/STDERR redirection, should help tracking down 'unknown' console spam.
     
  • Added exception printing when deserializing datawatchers. Should stop pixelmon blaming forge for their mistakes.
     
  • Added more noise when people screw up mod downloading and put .jar.zip in their mod folders.
     
  • Added a delegate to every item and block. For better handeling of mods overriding vanilla/modded blocks/items.
     
  • Added support for nested directories in language fesources.
     
  • Update to legacylauncher 1.11 and asm 5.0.3, may cause issues with some coremods, they need to update.
     
  • Added new packet to reset client handshake, to support servers like BungeeCord.
     
  • Added new BlockPlace events to allow controliling block placement.
     
  • Disabeld StencilBits by default, to prevent issues with intel cards. You must now opt-in to enabeling stencil bits by suppling the -Dforge.forceDisplayStencil=true flag.
     
  • Added PlayerWakeupEvent for when players stop using beds.
     
  • Added username cache for determining a player's last known username.
     
  • Added automatic packaging of Crowdin translations!

 

Bug Fix:


  •  
  • Fixed vanilla bug where Exp Orbs would spawn in wrong location
     
  • Fixed vanilla bug where chat window would have wrong opacity in certian conditions
     
  • Fixed minor bugs in new GUI system
     
  • Fixed bug where Resource Packs could not override localizations from mods.
     
  • Fixed issue in loading non-coremod AccessTransformer files.
     
  • Fixed NPE that happens sometimes when exiting the game witout fully loading a world.
     
  • Fixed skulls not respecting Block.isReplaceable.
     
  • Fixed skulls deleting blocks when placed at certain angels.
     
  • Fixed issue in FML's networking that caused read errors with large mod packs.
     
  • Fixed vanilla bug where lighting values would delay sending of chunks to client.
     
  • Fixed bug that allowed duplication of Fluids with redstone dust.
     
  • Fixed ItemFluidContainer always draining the maximum amount, regardless of the amount remaining.
     
  • Fixed issue with NBT loading of legacy liquid names to new Fluid system.
     
  • Fixed vanilla bug where items with multiple render passes would look odd in first person.
     
  • Fixed bug where enchanted books would display on custom creative tabs.
     
  • Fixed potential AIOOB in BiomeDictionary.
     
  • Fixed bug where StringArrays would not save correctly in configs.
     
  • Fixed issue with 'gassious' fluids would render oddly.
     
  • Fixed Clientside GameProfile UUID being null on offline mode
     
  • Removed net.minecraft.src warning, if modders are in this package still there is no helping them.
     
  • Fixed bug where player data would get corrupt if they logged in before server fully started by kicking them if they try.
     
  • Fixed NPE error caused by FML trying to parse the super of Object in IDEA envs.
     
  • Fixed issue where there was a invisble 'ok' button allowing people to bypass fatal error messages.
     
  • Fixed issue with slow computers starting up single player worlds.
     
  • Fixed ConcurrentModificationException caused by Java 1.8 update 20.
     
  • Fixed bug in EntitySpawn packet that would cause data to not be written.
     
  • Fixed bug where server description would overlap server type in multiplayer list.
     
  • Fixed bug where client side commands would be sent to the server.
     
  • Fixed vanilla lighting issue and blending issues in achievements gui.
     
  • Fixed bug where biomes with weights less then 10 were not spawning correctly.

 

Major New Feature:

Block Place Event:

    Added PlaceEvent and MultiPlaceEvent which fires before placing a block.

   

    Before calling "ItemStack.tryPlaceItemInWorld", a recording flag is turned on for

    setBlock to capture a blocksnapshot for each block that attempts to be placed.

   

    If 1 block is captured, a "BlockEvent.PlaceEvent" is fired to notify mods.

    If 2 or more blocks are captured, a "BlockEvent.PlaceEvent" is fired first with the first block

    captured followed by a "BlockEvent.MultiPlaceEvent" with all captured blocks. This extra event

    is required for items that have the ability to place 2 or more blocks such as a BlockBed.

   

    If either event is cancelled, the recorded block snapshot(s), item stacksize, and item meta will

    revert back to the captured snapshot(s).

    If the events are not cancelled, a notification will be sent to clients and block physics will be updated.

   

    What this means for mods is Forge will be able to capture all player block placement automatically and fire

    a PlaceEvent and/or MultiPlaceEvent.

    If for whatever reason your mod does not use the standard placement methods then you will need to fire the

    appropriate placement events in order to notify mods/servers.

   

    This commit also includes a new utility class called BlockSnapshot which is serializable. This new class is used in conjunction with

    both PlaceEvent and MultiPlaceEvent in order to record a snapshot of block space before it is altered. This

    allows us to restore the block(s) if an event is cancelled. The class also provides the ability to restore a snapshot

    to any location using the restoreToLocation method. This should be helpful to many mods that are looking to be able

    to capture block data then restore it to back to any location required.

   

    This combined with our previous BlockBreak event should allow full control for permissions and anti-greifing mods.

 

Now that this is done, I may be able to actually start work on Forge's 1.8 update!

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

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • 🤑DAFTAR & LOGIN🤑 🤑DAFTAR & LOGIN🤑 🤑DAFTAR & LOGIN🤑   Daftar Slot Ratuasia77 adalah bocoran slot rekomendasi gacor dari Ratuasia77 yang bisa anda temukan di SLOT Ratuasia77. Situs SLOT Ratuasia77 hari ini yang kami bagikan di sini adalah yang terbaik dan bersiaplah untuk mengalami sensasi tak terlupakan dalam permainan slot online. Temukan game SLOT Ratuasia77 terbaik dengan 100 pilihan provider ternama yang dipercaya akan memberikan kepuasan dan kemenangan hari ini untuk meraih x500. RTP SLOT Ratuasia77 merupakan SLOT Ratuasia77 hari ini yang telah menjadi pilihan utama bagi pemain judi online di seluruh Indonesia. Setiap harinya jutaan pemain memasuki dunia maya untuk memperoleh hiburan seru dan kemenangan besar dalam bermain slot dengan adanya bocoran RTP SLOT Ratuasia77. Tidak ada yang lebih menyenangkan daripada mengungguli mesin slot dan meraih jackpot x500 yang menggiurkan di situs SLOT Ratuasia77 hari ini yang telah disediakan SLOT Ratuasia77. Menangkan jackpot besar x500 rajanya maxwin dari segala slot dan raih kemenangan spektakuler di situs Ratuasia77 terbaik 2024 adalah tempat yang menyediakan mesin slot dengan peluang kemenangan lebih tinggi daripada situs slot lainnya. Bagi anda yang mencari pengalaman judi slot paling seru dan mendebarkan, situs bo SLOT Ratuasia77 terbaik 2024 adalah pilihan yang tepat. Jelajahi dunia slot online melalui situs SLOT Ratuasia77 di link SLOT Ratuasia77.
    • 20 SLOT DEMO GRATIS PRAGMATIC PLAY x500 RUPIAH ANTI LAG & 20 DEMO SLOT MAHJONG WAYS PG SOFT GRATIS ANTI RUNGKAD KLIK DISINI DAFTAR DISINI SLOT VVIP << KLIK DISINI DAFTAR DISINI SLOT VVIP << KLIK DISINI DAFTAR DISINI SLOT VVIP << KLIK DISINI DAFTAR DISINI SLOT VVIP << SITUS SLOT GACOR 88 MAXWIN X500 HARI INI TERBAIK DAN TERPERCAYA GAMPANG MENANG Dunia Game gacor terus bertambah besar seiring berjalannya waktu, dan sudah tentu dunia itu terus berkembang serta merta bersamaan dengan berkembangnya SLOT GACOR sebagai website number #1 yang pernah ada dan tidak pernah mengecewakan sekalipun. Dengan banyaknya member yang sudah mempercayakan untuk terus menghasilkan uang bersama dengan SLOT GACOR pastinya mereka sudah percaya untuk bermain Game online bersama dengan kami dengan banyaknya testimoni yang sudah membuktikan betapa seringnya member mendapatkan jackpot besar yang bisa mencapai ratusan juta rupiah. Best online Game website that give you more money everyday, itu lah slogan yang tepat untuk bermain bersama SLOT GACOR yang sudah pasti menang setiap harinya dan bisa menjadikan bandar ini sebagai patokan untuk mendapatkan penghasilan tambahan yang efisien dan juga sesuatu hal yang fix setiap hari nya. Kami juga mendapatkan julukan sebagai Number #1 website bocor yang berarti terus memberikan member uang asli dan jackpot setiap hari nya, tidak lupa bocor itu juga bisa diartikan dalam bentuk berbagi promosi untuk para official member yang terus setia bermain bersama dengan kami. Berbagai provider Game terus bertambah banyak setiap harinya dan terus melakukan support untuk membuat para official member terus bisa menang dan terus maxwin dalam bentuk apapun maka itu langsung untuk feel free to try yourself, play with SLOT GACOR now or never !
    • BOCORAN POLA SLOT GACOR MAHJONG WAYS MAXWIN x500 PETIR MERAH HARI INI HINGGA MALAM INI KLIK DISINI DAFTAR SLOT VVIP << KLIK DISINI DAFTAR SLOT VVIP << KLIK DISINI DAFTAR SLOT VVIP << KLIK DISINI DAFTAR SLOT VVIP << SITUS SLOT GACOR 88 MAXWIN X500 HARI INI TERBAIK DAN TERPERCAYA GAMPANG MENANG Dunia Game gacor terus bertambah besar seiring berjalannya waktu, dan sudah tentu dunia itu terus berkembang serta merta bersamaan dengan berkembangnya SLOT GACOR sebagai website number #1 yang pernah ada dan tidak pernah mengecewakan sekalipun. Dengan banyaknya member yang sudah mempercayakan untuk terus menghasilkan uang bersama dengan SLOT GACOR pastinya mereka sudah percaya untuk bermain Game online bersama dengan kami dengan banyaknya testimoni yang sudah membuktikan betapa seringnya member mendapatkan jackpot besar yang bisa mencapai ratusan juta rupiah. Best online Game website that give you more money everyday, itu lah slogan yang tepat untuk bermain bersama SLOT GACOR yang sudah pasti menang setiap harinya dan bisa menjadikan bandar ini sebagai patokan untuk mendapatkan penghasilan tambahan yang efisien dan juga sesuatu hal yang fix setiap hari nya. Kami juga mendapatkan julukan sebagai Number #1 website bocor yang berarti terus memberikan member uang asli dan jackpot setiap hari nya, tidak lupa bocor itu juga bisa diartikan dalam bentuk berbagi promosi untuk para official member yang terus setia bermain bersama dengan kami. Berbagai provider Game terus bertambah banyak setiap harinya dan terus melakukan support untuk membuat para official member terus bisa menang dan terus maxwin dalam bentuk apapun maka itu langsung untuk feel free to try yourself, play with SLOT GACOR now or never !
    • Museumbola merupakan wadah judi online terkhusus untuk sbobet atau judi bola. Dengan daftar dan deposit menggunakan BANK BCA, Anda berkesempatan mendapatkan prediksi jitu pertandingan secara update setiap hari yang bisa anda jadikan acuan untuk bermain judi bola. Hanya dengan 10 ribu rupiah dan anda bermain Mix Parlay menggunakan prediksi yang telah di sediakan oleh kami, anda akan memenangkan jutaan rupiah. Yuk segera klik DAFTAR sekarang juga.
    • I was just trying to play my modded world when i randomly got this crash for no reason. I sorted through like every mod and eventually I realized it was LLibrary but I can't seem to find a solution to fix the crashing. I can't lose the world that I have that uses this mod please help me. Here's the report: https://pastebin.com/0D00B79i If anyone has a solution please let me know.  
  • Topics

×
×
  • Create New...

Important Information

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