Disable the crafting module

This commit is contained in:
cswhite2000 2017-07-29 02:07:33 -07:00
parent 99ae043580
commit c48a5d1f22
1 changed files with 2 additions and 1 deletions

View File

@ -84,7 +84,8 @@ public class CraftingModule implements MapModule, MatchModuleFactory<CraftingMat
}
}
return customRecipes.isEmpty() && disabledRecipes.isEmpty() ? null : new CraftingModule(customRecipes, disabledRecipes);
//return customRecipes.isEmpty() && disabledRecipes.isEmpty() ? null : new CraftingModule(customRecipes, disabledRecipes);
return null;
}
private ItemStack parseRecipeResult(MapModuleContext context, Element elRecipe) throws InvalidXMLException {