Fixes Aludel consuming wrong amount of items
This commit is contained in:
parent
810232cfe0
commit
abd00dc200
2 changed files with 10 additions and 10 deletions
|
@ -96,13 +96,13 @@ public class RecipesAludel
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public ItemStack[] getRecipeInputs(ItemStack itemStack)
|
public RecipeAludel getRecipe(ItemStack recipeInputStack, ItemStack recipeInputDust)
|
||||||
{
|
{
|
||||||
for (RecipeAludel recipeAludel : aludelRecipes)
|
for (RecipeAludel recipeAludel : aludelRecipes)
|
||||||
{
|
{
|
||||||
if (ItemHelper.equals(recipeAludel.getRecipeOutput(), itemStack))
|
if (recipeAludel.matches(recipeInputStack, recipeInputDust))
|
||||||
{
|
{
|
||||||
return recipeAludel.getRecipeInputs();
|
return recipeAludel;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
package com.pahimar.ee3.tileentity;
|
package com.pahimar.ee3.tileentity;
|
||||||
|
|
||||||
import com.pahimar.ee3.helper.ItemHelper;
|
import com.pahimar.ee3.helper.ItemHelper;
|
||||||
|
import com.pahimar.ee3.item.crafting.RecipeAludel;
|
||||||
import com.pahimar.ee3.lib.Strings;
|
import com.pahimar.ee3.lib.Strings;
|
||||||
import com.pahimar.ee3.network.PacketTypeHandler;
|
import com.pahimar.ee3.network.PacketTypeHandler;
|
||||||
import com.pahimar.ee3.network.packet.PacketTileWithItemUpdate;
|
import com.pahimar.ee3.network.packet.PacketTileWithItemUpdate;
|
||||||
|
@ -319,20 +320,19 @@ public class TileAludel extends TileEE implements IInventory
|
||||||
{
|
{
|
||||||
if (this.canInfuse())
|
if (this.canInfuse())
|
||||||
{
|
{
|
||||||
ItemStack infusedItemStack = RecipesAludel.getInstance().getResult(inventory[INPUT_INVENTORY_INDEX], inventory[DUST_INVENTORY_INDEX]);
|
RecipeAludel recipe = RecipesAludel.getInstance().getRecipe(inventory[INPUT_INVENTORY_INDEX], inventory[DUST_INVENTORY_INDEX]);
|
||||||
ItemStack[] inputPair = RecipesAludel.getInstance().getRecipeInputs(infusedItemStack);
|
|
||||||
|
|
||||||
if (this.inventory[OUTPUT_INVENTORY_INDEX] == null)
|
if (this.inventory[OUTPUT_INVENTORY_INDEX] == null)
|
||||||
{
|
{
|
||||||
this.inventory[OUTPUT_INVENTORY_INDEX] = infusedItemStack.copy();
|
this.inventory[OUTPUT_INVENTORY_INDEX] = recipe.getRecipeOutput().copy();
|
||||||
}
|
}
|
||||||
else if (this.inventory[OUTPUT_INVENTORY_INDEX].isItemEqual(infusedItemStack))
|
else if (this.inventory[OUTPUT_INVENTORY_INDEX].isItemEqual(recipe.getRecipeOutput()))
|
||||||
{
|
{
|
||||||
inventory[OUTPUT_INVENTORY_INDEX].stackSize += infusedItemStack.stackSize;
|
inventory[OUTPUT_INVENTORY_INDEX].stackSize += recipe.getRecipeOutput().stackSize;
|
||||||
}
|
}
|
||||||
|
|
||||||
decrStackSize(INPUT_INVENTORY_INDEX, inputPair[0].stackSize);
|
decrStackSize(INPUT_INVENTORY_INDEX, recipe.getRecipeInputs()[0].stackSize);
|
||||||
decrStackSize(DUST_INVENTORY_INDEX, inputPair[1].stackSize);
|
decrStackSize(DUST_INVENTORY_INDEX, recipe.getRecipeInputs()[1].stackSize);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue