mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-16 13:03:12 +01:00
b00e214217
Go suck a dick now.
38 lines
1.3 KiB
Java
38 lines
1.3 KiB
Java
/*
|
|
* This file ("RecipeUtil.java") is part of the Actually Additions mod for Minecraft.
|
|
* It is created and owned by Ellpeck and distributed
|
|
* under the Actually Additions License to be found at
|
|
* http://ellpeck.de/actaddlicense
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
*
|
|
* © 2015-2016 Ellpeck
|
|
*/
|
|
|
|
package de.ellpeck.actuallyadditions.mod.util;
|
|
|
|
import de.ellpeck.actuallyadditions.api.ActuallyAdditionsAPI;
|
|
import de.ellpeck.actuallyadditions.api.recipe.CrusherRecipe;
|
|
import de.ellpeck.actuallyadditions.api.recipe.LensConversionRecipe;
|
|
import net.minecraft.item.crafting.CraftingManager;
|
|
import net.minecraft.item.crafting.IRecipe;
|
|
|
|
import java.util.List;
|
|
|
|
public class RecipeUtil{
|
|
|
|
public static LensConversionRecipe lastReconstructorRecipe(){
|
|
List<LensConversionRecipe> list = ActuallyAdditionsAPI.RECONSTRUCTOR_LENS_CONVERSION_RECIPES;
|
|
return list.get(list.size()-1);
|
|
}
|
|
|
|
public static CrusherRecipe lastCrusherRecipe(){
|
|
List<CrusherRecipe> list = ActuallyAdditionsAPI.CRUSHER_RECIPES;
|
|
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;
|
|
}
|
|
}
|