You can now disassemble Storage Cells, Crafting CPU Parts, and Encoded Patterns by crafting items by themselves.

This commit is contained in:
AlgorithmX2
2014-07-29 21:27:37 -05:00
parent f5ba33dda5
commit ba182af4e9
6 changed files with 162 additions and 1 deletions
+4
View File
@@ -139,6 +139,7 @@ import appeng.me.storage.AEExternalHandler;
import appeng.parts.PartPlacement;
import appeng.recipes.AEItemResolver;
import appeng.recipes.RecipeHandler;
import appeng.recipes.game.DisassembleRecipe;
import appeng.recipes.game.FacadeRecipe;
import appeng.recipes.game.ShapedRecipe;
import appeng.recipes.game.ShapelessRecipe;
@@ -562,6 +563,9 @@ public class Registration
recipeHandler.injectRecipes();
if ( AEConfig.instance.isFeatureEnabled( AEFeature.enableDisassemblyCrafting ) )
CraftingManager.getInstance().getRecipeList().add( new DisassembleRecipe() );
if ( AEConfig.instance.isFeatureEnabled( AEFeature.enableFacadeCrafting ) )
CraftingManager.getInstance().getRecipeList().add( new FacadeRecipe() );
}