Updated forge and MCP mappings to latest version.
This commit is contained in:
@@ -144,7 +144,7 @@ class FacadeBuilder
|
||||
int color = 0xffffff;
|
||||
try
|
||||
{
|
||||
blockColors.func_189991_a( blockState );
|
||||
blockColors.getColor( blockState );
|
||||
}
|
||||
catch( final Throwable ignored )
|
||||
{
|
||||
|
||||
@@ -35,7 +35,7 @@ public final class DispenserBehaviorTinyTNT extends BehaviorDefaultDispenseItem
|
||||
@Override
|
||||
protected ItemStack dispenseStack( final IBlockSource dispenser, final ItemStack dispensedItem )
|
||||
{
|
||||
final EnumFacing enumfacing = dispenser.func_189992_e().getValue( BlockDispenser.FACING );
|
||||
final EnumFacing enumfacing = dispenser.getBlockState().getValue( BlockDispenser.FACING );
|
||||
final World world = dispenser.getWorld();
|
||||
final int i = dispenser.getBlockPos().getX() + enumfacing.getFrontOffsetX();
|
||||
final int j = dispenser.getBlockPos().getY() + enumfacing.getFrontOffsetY();
|
||||
|
||||
@@ -41,7 +41,7 @@ public final class DispenserBlockTool extends BehaviorDefaultDispenseItem
|
||||
final Item i = dispensedItem.getItem();
|
||||
if( i instanceof IBlockTool )
|
||||
{
|
||||
final EnumFacing enumfacing = dispenser.func_189992_e().getValue( BlockDispenser.FACING );
|
||||
final EnumFacing enumfacing = dispenser.getBlockState().getValue( BlockDispenser.FACING );
|
||||
final IBlockTool tm = (IBlockTool) i;
|
||||
|
||||
final World w = dispenser.getWorld();
|
||||
|
||||
@@ -43,7 +43,7 @@ public final class DispenserMatterCannon extends BehaviorDefaultDispenseItem
|
||||
final Item i = dispensedItem.getItem();
|
||||
if( i instanceof ToolMassCannon )
|
||||
{
|
||||
final EnumFacing enumfacing = dispenser.func_189992_e().getValue( BlockDispenser.FACING );
|
||||
final EnumFacing enumfacing = dispenser.getBlockState().getValue( BlockDispenser.FACING );
|
||||
AEPartLocation dir = AEPartLocation.INTERNAL;
|
||||
for( final AEPartLocation d : AEPartLocation.SIDE_LOCATIONS )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user