2016-03-18 18:41:37 +01:00
|
|
|
/*
|
2016-05-16 22:52:27 +02:00
|
|
|
* This file ("RecipeUtil.java") is part of the Actually Additions mod for Minecraft.
|
2016-03-18 18:41:37 +01:00
|
|
|
* It is created and owned by Ellpeck and distributed
|
|
|
|
* under the Actually Additions License to be found at
|
2016-05-16 22:52:27 +02:00
|
|
|
* http://ellpeck.de/actaddlicense
|
2016-03-18 18:41:37 +01:00
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2016-05-16 22:52:27 +02:00
|
|
|
* © 2015-2016 Ellpeck Ellpeck
|
2016-03-18 18:41:37 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
package de.ellpeck.actuallyadditions.mod.util;
|
|
|
|
|
|
|
|
import de.ellpeck.actuallyadditions.api.ActuallyAdditionsAPI;
|
|
|
|
import de.ellpeck.actuallyadditions.api.recipe.CrusherRecipe;
|
2016-05-14 13:51:18 +02:00
|
|
|
import de.ellpeck.actuallyadditions.api.recipe.LensConversionRecipe;
|
2016-03-18 18:41:37 +01:00
|
|
|
import net.minecraft.item.crafting.CraftingManager;
|
|
|
|
import net.minecraft.item.crafting.IRecipe;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
public class RecipeUtil{
|
|
|
|
|
2016-05-14 13:51:18 +02:00
|
|
|
public static LensConversionRecipe lastReconstructorRecipe(){
|
|
|
|
List<LensConversionRecipe> list = ActuallyAdditionsAPI.reconstructorLensConversionRecipes;
|
2016-03-18 18:41:37 +01:00
|
|
|
return list.get(list.size()-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static CrusherRecipe lastCrusherRecipe(){
|
|
|
|
List<CrusherRecipe> list = ActuallyAdditionsAPI.crusherRecipes;
|
|
|
|
return list.get(list.size()-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static IRecipe lastIRecipe(){
|
|
|
|
List list = CraftingManager.getInstance().getRecipeList();
|
|
|
|
Object recipe = list.get(list.size()-1);
|
|
|
|
return recipe instanceof IRecipe ? (IRecipe)recipe : null;
|
|
|
|
}
|
|
|
|
}
|