diff options
| author | Unknown <shekwancheung0528@gmail.com> | 2019-08-09 16:45:41 +0800 |
|---|---|---|
| committer | Unknown <shekwancheung0528@gmail.com> | 2019-08-09 16:45:41 +0800 |
| commit | dd680c2cd41f11eccd294ca30c38b82565cd1633 (patch) | |
| tree | e873496059cb33d45bbd72ca058e5e9e65de30ab /src/main/java/me/shedaniel/rei/plugin/DefaultAutoCraftingPlugin.java | |
| parent | 10fa4cea1da644efe5b3045d3159a3eebdb8c0a8 (diff) | |
| download | RoughlyEnoughItems-dd680c2cd41f11eccd294ca30c38b82565cd1633.tar.gz RoughlyEnoughItems-dd680c2cd41f11eccd294ca30c38b82565cd1633.tar.bz2 RoughlyEnoughItems-dd680c2cd41f11eccd294ca30c38b82565cd1633.zip | |
Auto Crafting should work perfectly on vanilla stuff now
Diffstat (limited to 'src/main/java/me/shedaniel/rei/plugin/DefaultAutoCraftingPlugin.java')
| -rw-r--r-- | src/main/java/me/shedaniel/rei/plugin/DefaultAutoCraftingPlugin.java | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/main/java/me/shedaniel/rei/plugin/DefaultAutoCraftingPlugin.java b/src/main/java/me/shedaniel/rei/plugin/DefaultAutoCraftingPlugin.java index 07e8850e3..8bcbe5083 100644 --- a/src/main/java/me/shedaniel/rei/plugin/DefaultAutoCraftingPlugin.java +++ b/src/main/java/me/shedaniel/rei/plugin/DefaultAutoCraftingPlugin.java @@ -8,7 +8,10 @@ package me.shedaniel.rei.plugin; import me.shedaniel.rei.RoughlyEnoughItemsCore; import me.shedaniel.rei.api.RecipeHelper; import me.shedaniel.rei.api.plugins.REIPluginV0; -import me.shedaniel.rei.plugin.autocrafting.*; +import me.shedaniel.rei.plugin.autocrafting.AutoBlastingBookHandler; +import me.shedaniel.rei.plugin.autocrafting.AutoCraftingHandler; +import me.shedaniel.rei.plugin.autocrafting.AutoFurnaceBookHandler; +import me.shedaniel.rei.plugin.autocrafting.AutoSmokerBookHandler; import net.fabricmc.loader.api.SemanticVersion; import net.fabricmc.loader.util.version.VersionParsingException; import net.minecraft.util.Identifier; @@ -32,12 +35,12 @@ public class DefaultAutoCraftingPlugin implements REIPluginV0 { if (!RoughlyEnoughItemsCore.getConfigManager().getConfig().isLoadingDefaultPlugin()) { return; } - recipeHelper.registerAutoCraftingHandler(new AutoCraftingTableBookHandler()); - recipeHelper.registerAutoCraftingHandler(new AutoInventoryBookHandler()); + // recipeHelper.registerAutoCraftingHandler(new AutoCraftingTableBookHandler()); + // recipeHelper.registerAutoCraftingHandler(new AutoInventoryBookHandler()); recipeHelper.registerAutoCraftingHandler(new AutoFurnaceBookHandler()); recipeHelper.registerAutoCraftingHandler(new AutoSmokerBookHandler()); recipeHelper.registerAutoCraftingHandler(new AutoBlastingBookHandler()); - recipeHelper.registerAutoCraftingHandler(new AutoCraftingTableHandler()); + recipeHelper.registerAutoCraftingHandler(new AutoCraftingHandler()); } } |
