ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/util/RecipeUtil.java

44 lines
1.5 KiB
Java
Raw Normal View History

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
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 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-08-03 01:09:11 +02:00
import de.ellpeck.actuallyadditions.api.recipe.EmpowererRecipe;
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;
2016-10-31 19:05:29 +01:00
2016-03-18 18:41:37 +01:00
import java.util.List;
2016-06-17 23:50:38 +02:00
public final class RecipeUtil{
2016-03-18 18:41:37 +01:00
2016-05-14 13:51:18 +02:00
public static LensConversionRecipe lastReconstructorRecipe(){
2016-05-19 20:05:12 +02:00
List<LensConversionRecipe> list = ActuallyAdditionsAPI.RECONSTRUCTOR_LENS_CONVERSION_RECIPES;
2016-03-18 18:41:37 +01:00
return list.get(list.size()-1);
}
public static CrusherRecipe lastCrusherRecipe(){
2016-05-19 20:05:12 +02:00
List<CrusherRecipe> list = ActuallyAdditionsAPI.CRUSHER_RECIPES;
2016-03-18 18:41:37 +01:00
return list.get(list.size()-1);
}
public static IRecipe lastIRecipe(){
2016-09-08 17:34:54 +02:00
List<IRecipe> list = CraftingManager.getInstance().getRecipeList();
return list.get(list.size()-1);
2016-03-18 18:41:37 +01:00
}
2016-08-03 01:09:11 +02:00
2016-08-03 19:01:12 +02:00
public static EmpowererRecipe lastEmpowererRecipe(){
List<EmpowererRecipe> list = ActuallyAdditionsAPI.EMPOWERER_RECIPES;
return list.get(list.size()-1);
}
2016-03-18 18:41:37 +01:00
}