Fix Forge saying that the recipe class IronShulkerBoxColoringRecipe isn't registered with RecipeSorter. Closes #102

This commit is contained in:
alexbegt 2017-06-24 19:29:54 -04:00
parent 7f7b469f0b
commit 4853a7ef58
1 changed files with 2 additions and 3 deletions

View File

@ -14,7 +14,6 @@ import java.util.List;
import com.google.common.collect.Lists;
import cpw.mods.ironchest.IronChest;
import cpw.mods.ironchest.common.blocks.chest.BlockIronChest;
import cpw.mods.ironchest.common.blocks.chest.IronChestType;
import cpw.mods.ironchest.common.blocks.shulker.BlockIronShulkerBox;
@ -109,8 +108,8 @@ public class ICContent
// Shulkers Start
setVanillaShulkerList();
RecipeSorter.register(IronChest.MOD_ID, IronShulkerBoxColoringRecipe.class, Category.SHAPELESS, "after:forge:shapelessore");
RecipeSorter.register(IronChest.MOD_ID, IronShulkerBoxRecipe.class, Category.SHAPED, "after:forge:shapelessore");
RecipeSorter.register("ironchest:shulkerboxcoloring", IronShulkerBoxColoringRecipe.class, Category.SHAPELESS, "after:forge:shapelessore");
RecipeSorter.register("ironchest:shulkerbox", IronShulkerBoxRecipe.class, Category.SHAPED, "after:forge:shapelessore");
ShulkerBoxChangerType.buildItems();