Update RecipeSorter for new 1.8 recipies.
This commit is contained in:
parent
aa07fa4443
commit
d48f4d0a94
2 changed files with 11 additions and 3 deletions
|
@ -18,11 +18,14 @@ import net.minecraft.item.crafting.CraftingManager;
|
|||
import net.minecraft.item.crafting.IRecipe;
|
||||
import net.minecraft.item.crafting.RecipeBookCloning;
|
||||
import net.minecraft.item.crafting.RecipeFireworks;
|
||||
import net.minecraft.item.crafting.RecipeRepairItem;
|
||||
import net.minecraft.item.crafting.RecipesArmorDyes;
|
||||
import net.minecraft.item.crafting.RecipesMapCloning;
|
||||
import net.minecraft.item.crafting.RecipesMapExtending;
|
||||
import net.minecraft.item.crafting.ShapedRecipes;
|
||||
import net.minecraft.item.crafting.ShapelessRecipes;
|
||||
import net.minecraft.item.crafting.RecipesBanners.RecipeAddPattern;
|
||||
import net.minecraft.item.crafting.RecipesBanners.RecipeDuplicatePattern;
|
||||
import static net.minecraftforge.oredict.RecipeSorter.Category.*;
|
||||
|
||||
@SuppressWarnings("rawtypes")
|
||||
|
@ -115,10 +118,13 @@ public class RecipeSorter implements Comparator<IRecipe>
|
|||
register("minecraft:shaped", ShapedRecipes.class, SHAPED, "before:minecraft:shapeless");
|
||||
register("minecraft:mapextending", RecipesMapExtending.class, SHAPED, "after:minecraft:shaped before:minecraft:shapeless");
|
||||
register("minecraft:shapeless", ShapelessRecipes.class, SHAPELESS, "after:minecraft:shaped");
|
||||
register("minecraft:repair", RecipeRepairItem.class, SHAPELESS, "after:minecraft:shapeless"); //Size 4
|
||||
register("minecraft:bookcloning", RecipeBookCloning.class, SHAPELESS, "after:minecraft:shapeless"); //Size 9
|
||||
register("minecraft:fireworks", RecipeFireworks.class, SHAPELESS, "after:minecraft:shapeless"); //Size 10
|
||||
register("minecraft:armordyes", RecipesArmorDyes.class, SHAPELESS, "after:minecraft:shapeless"); //Size 10
|
||||
register("minecraft:mapcloning", RecipesMapCloning.class, SHAPELESS, "after:minecraft:shapeless"); //Size 10
|
||||
register("minecraft:pattern_dupe", RecipeDuplicatePattern.class, SHAPELESS, "after:minecraft:shapeless"); //Size 2
|
||||
register("minecraft:pattern_add", RecipeAddPattern.class, SHAPELESS, "after:minecraft:shapeless"); //Size 10
|
||||
|
||||
register("forge:shapedore", ShapedOreRecipe.class, SHAPED, "after:minecraft:shaped before:minecraft:shapeless");
|
||||
register("forge:shapelessore", ShapelessOreRecipe.class, SHAPELESS, "after:minecraft:shapeless");
|
||||
|
|
|
@ -118,3 +118,5 @@ public net.minecraft.world.gen.ChunkProviderServer field_73245_g # loadedChunks
|
|||
public net.minecraft.world.gen.ChunkProviderServer field_73251_h # worldObj
|
||||
# RenderEntityItem
|
||||
protected net.minecraft.client.renderer.entity.RenderEntityItem func_177078_a(Lnet/minecraft/item/ItemStack;)I # getMiniItemCount
|
||||
public net.minecraft.item.crafting.RecipesBanners$RecipeAddPattern
|
||||
public net.minecraft.item.crafting.RecipesBanners$RecipeDuplicatePattern
|
Loading…
Reference in a new issue