Removed extra interface from CrateRecipe
This commit is contained in:
parent
32297b272c
commit
cce49292af
1 changed files with 2 additions and 4 deletions
|
@ -2,9 +2,7 @@ package resonantinduction.archaic.crate
|
|||
|
||||
import net.minecraft.block.Block
|
||||
import net.minecraft.inventory.InventoryCrafting
|
||||
import net.minecraft.item.Item
|
||||
import net.minecraft.item.ItemStack
|
||||
import net.minecraft.item.crafting.IRecipe
|
||||
import net.minecraft.item.{Item, ItemStack}
|
||||
import net.minecraftforge.oredict.ShapedOreRecipe
|
||||
import resonantinduction.archaic.ArchaicContent
|
||||
|
||||
|
@ -13,7 +11,7 @@ import resonantinduction.archaic.ArchaicContent
|
|||
*
|
||||
* @author Darkguardsman
|
||||
*/
|
||||
class CrateRecipe(result: ItemStack, recipe: AnyRef*) extends ShapedOreRecipe(result, recipe) with IRecipe
|
||||
class CrateRecipe(result: ItemStack, recipe: AnyRef*) extends ShapedOreRecipe(result, recipe)
|
||||
{
|
||||
def this(result: Block, recipe: AnyRef*)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue