1
0
mirror of https://github.com/OvercastNetwork/ProjectAres.git synced 2025-04-11 22:56:08 +02:00

Disable the crafting module

This commit is contained in:
cswhite2000 2017-07-29 02:07:33 -07:00
parent 99ae043580
commit c48a5d1f22

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 {