Sunday, January 22, 2017

CompatLayer for Minecraft 1.11/1.10.2



Description

CompatLayer 1.11/1.10.2 is a small library/mod that allows you to write mods that run on 1.10.2 and 1.11 with the same binary jar. At least upto some point. At the very least it helps to minimize the source changes between your 1.10.2 version and 1.11 version of your mod in case you do need to have two versions for whatever reason.

Basically CompatLayer is nothing more then a set of classes and functions that help abstract away the differences between 1.10.2 and 1.11. At this moment it contains:

  • CompatBlock: A simple extension of Block that overrides methods that have changed in 1.11 and calls CompatLayer specific versions that you can override instead in your code. Currently supports ‘neighborChanged’ and ‘onBlockActivated’
  • CompatItem: A simple extension of Item that basically does the same thing as CompatBlock but then for items. Currently contains ‘onItemRightClick’
  • CompatInventory: an interface that inherits from IInventory and adds a default implementation for the new func_191420_l function.
  • CompatSidedInventory: same for ISidedInventory.
  • ChatTools: contains a simple message ‘addChatMessage’ that avoids the new parameter that player.addChatComponentMessage() has.
  • ItemStackTools: this is the biggest reason for this mod. ItemStack handling has changed a lot in 1.11. Basically itemstacks are never ‘null’. Instead there is a new empty itemstack. This class makes abstraction of that. If you carefully go through all your code that uses itemstacks and replace all calls and tests (especially things like ‘stack = null’ or ‘if (stack == null)’) with methods from this class.



  • Download here :
    CompatLayer for Minecraft 1.11/1.10.2

    See more :
    Minecraft 1.11.2 Mods
    Command Blocks 1.11.2
    Minecraft 1.11 Maps

    Related Posts:

    • RWBY Craft Mod 1.7.10/1.7.2/1.6.4 Description RWBY Craft Mod is a mod based on rwby (pronounced Ruby).Mod Screenshots:Mod Showcase: Download RWBY Craft Mod 1.7.10/1.7.2/1.6.4 … Read More
    • Fast Food Mod 1.7.10 Description Fast Food Mod brings fast food resturants such as Mcdonalds, The Fries, McWrap, Burger King and Wendys into Minecraft!Screenshots:Mod Showcase: Download Fast Food Mod 1.7.10 … Read More
    • Lobster Mod 1.7.10 Description The Lobster adds lots more than just lobsters. There is a lobster mob (don?t ask why they are purple lol) and a lobster boss. With the Lobster shell dropped off the Lobster you can create Lobster armor whic… Read More
    • Nether Eye Mod 1.8/1.7.10/1.7.2 Description What is Nether Eye Mod ?Nether Eye Mod adds a nether version of an eye of ender to the game. You can craft it with an ender pearl and magma cream. Use the Nether Eye in the nether to get the way t… Read More
    • Dynamic Sword Skills Mod 1.8/1.7.10/1.7.2 Description Screenshots:Skill GUI All currently available skill orbs All currently available skill orbsSword Skills: Download Dynamic Sword Skills Mod 1.8/1.7.10/1.7.2 … Read More

    0 comments:

    Post a Comment