1.8.8 + deleted all integration can be recovered later or something.
This commit is contained in:
@@ -67,9 +67,10 @@ public class NetworkToolViewer implements INetworkTool
|
||||
}
|
||||
|
||||
@Override
|
||||
public ItemStack getStackInSlotOnClosing( final int i )
|
||||
public ItemStack removeStackFromSlot(
|
||||
int i )
|
||||
{
|
||||
return this.inv.getStackInSlotOnClosing( i );
|
||||
return this.inv.removeStackFromSlot( i );
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -79,9 +80,9 @@ public class NetworkToolViewer implements INetworkTool
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getCommandSenderName()
|
||||
public String getName()
|
||||
{
|
||||
return this.inv.getCommandSenderName();
|
||||
return this.inv.getName();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -52,7 +52,8 @@ public class ToolBiometricCard extends AEBaseItem implements IBiometricCard
|
||||
|
||||
if( Platform.isClient() )
|
||||
{
|
||||
MinecraftForgeClient.registerItemRenderer( this, new ToolBiometricCardRender() );
|
||||
// TODO - PORT ToolBiometricCardRender
|
||||
//MinecraftForgeClient.registerItemRenderer( this, new ToolBiometricCardRender() );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -110,7 +110,8 @@ public class ToolColorApplicator extends AEBasePoweredItem implements IStorageCe
|
||||
this.setFeature( EnumSet.of( AEFeature.ColorApplicator, AEFeature.PoweredTools ) );
|
||||
if( Platform.isClient() )
|
||||
{
|
||||
MinecraftForgeClient.registerItemRenderer( this, new ToolColorApplicatorRender() );
|
||||
//TODO - color applicator
|
||||
//MinecraftForgeClient.registerItemRenderer( this, new ToolColorApplicatorRender() );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user