Package appeng.integration.abstraction

Examples of appeng.integration.abstraction.IMekanism


  @Override
  public void register() throws RegistrationError, MissingIngredientError
  {
    if ( AppEng.instance.isIntegrationEnabled( IntegrationType.Mekanism ) )
    {
      IMekanism rc = (IMekanism) AppEng.instance.getIntegration( IntegrationType.Mekanism );
      for (ItemStack is : pro_input.getItemStackSet())
      {
        try
        {
          rc.addCrusherRecipe( is, pro_output[0].getItemStack() );
        }
        catch (java.lang.RuntimeException err)
        {
          AELog.info( "Mekanism not happy - " + err.getMessage() );
        }
View Full Code Here


  @Override
  public void register() throws RegistrationError, MissingIngredientError
  {
    if ( AppEng.instance.isIntegrationEnabled( IntegrationType.Mekanism ) )
    {
      IMekanism rc = (IMekanism) AppEng.instance.getIntegration( IntegrationType.Mekanism );
      for (ItemStack is : pro_input.getItemStackSet())
      {
        try
        {
          rc.addEnrichmentChamberRecipe( is, pro_output[0].getItemStack() );
        }
        catch (java.lang.RuntimeException err)
        {
          AELog.info( "Mekanism not happy - " + err.getMessage() );
        }
View Full Code Here

TOP

Related Classes of appeng.integration.abstraction.IMekanism

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.