mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
parent
64b62b4f80
commit
4e8e749f4f
2 changed files with 38 additions and 35 deletions
|
@ -55,7 +55,7 @@ public class BlockEmpowerer extends BlockContainerBase{
|
|||
if(empowerer != null){
|
||||
ItemStack stackThere = empowerer.getStackInSlot(0);
|
||||
if(heldItem != null){
|
||||
if(stackThere == null && TileEntityEmpowerer.getRecipeForInput(heldItem) != null){
|
||||
if(stackThere == null && !TileEntityEmpowerer.getRecipesForInput(heldItem).isEmpty()){
|
||||
ItemStack toPut = heldItem.copy();
|
||||
toPut.stackSize = 1;
|
||||
empowerer.setInventorySlotContents(0, toPut);
|
||||
|
|
|
@ -35,15 +35,16 @@ public class TileEntityEmpowerer extends TileEntityInventoryBase{
|
|||
super(1, "empowerer");
|
||||
}
|
||||
|
||||
public static EmpowererRecipe getRecipeForInput(ItemStack input){
|
||||
public static List<EmpowererRecipe> getRecipesForInput(ItemStack input){
|
||||
List<EmpowererRecipe> recipesThatWork = new ArrayList<EmpowererRecipe>();
|
||||
if(input != null){
|
||||
for(EmpowererRecipe recipe : ActuallyAdditionsAPI.EMPOWERER_RECIPES){
|
||||
if(recipe.input != null && recipe.input.isItemEqual(input)){
|
||||
return recipe;
|
||||
recipesThatWork.add(recipe);
|
||||
}
|
||||
}
|
||||
}
|
||||
return null;
|
||||
return recipesThatWork;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -51,8 +52,9 @@ public class TileEntityEmpowerer extends TileEntityInventoryBase{
|
|||
super.updateEntity();
|
||||
|
||||
if(!this.worldObj.isRemote){
|
||||
EmpowererRecipe recipe = getRecipeForInput(this.slots[0]);
|
||||
if(recipe != null){
|
||||
List<EmpowererRecipe> recipes = getRecipesForInput(this.slots[0]);
|
||||
if(!recipes.isEmpty()){
|
||||
for(EmpowererRecipe recipe : recipes){
|
||||
TileEntityDisplayStand[] modifierStands = this.getFittingModifiers(recipe, recipe.time);
|
||||
if(modifierStands != null){ //Meaning the display stands around match all the criteria
|
||||
boolean lessParticles = ConfigBoolValues.LESS_PARTICLES.isEnabled();
|
||||
|
@ -88,6 +90,7 @@ public class TileEntityEmpowerer extends TileEntityInventoryBase{
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
else{
|
||||
this.processTime = 0;
|
||||
}
|
||||
|
@ -152,7 +155,7 @@ public class TileEntityEmpowerer extends TileEntityInventoryBase{
|
|||
|
||||
@Override
|
||||
public boolean isItemValidForSlot(int index, ItemStack stack){
|
||||
return getRecipeForInput(stack) != null;
|
||||
return !getRecipesForInput(stack).isEmpty();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -162,7 +165,7 @@ public class TileEntityEmpowerer extends TileEntityInventoryBase{
|
|||
|
||||
@Override
|
||||
public boolean canExtractItem(int index, ItemStack stack, EnumFacing direction){
|
||||
return getRecipeForInput(stack) == null;
|
||||
return !getRecipesForInput(stack).isEmpty();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue