Fix JEI transfer fix. Typo correction.

This commit is contained in:
Salomão
2021-02-16 16:47:22 -03:00
parent 7834028459
commit 7c5ff5322a
2 changed files with 4 additions and 3 deletions
@@ -239,6 +239,7 @@ public class PacketJEIRecipe extends AppEngPacket
if( out != null )
{
out.setStackSize( recipe[x][y].getCount() );
currentItem = out.createItemStack();
}
}
@@ -254,10 +255,10 @@ public class PacketJEIRecipe extends AppEngPacket
}
else
{
currentItem = ad.simulateSimilarRemove(1, this.recipe[x][y],FuzzyMode.IGNORE_ALL, null );
currentItem = ad.simulateSimilarRemove(recipe[x][y].getCount(), this.recipe[x][y],FuzzyMode.IGNORE_ALL, null );
if( currentItem.isEmpty() )
{
currentItem = this.recipe[x][y];
currentItem = this.recipe[x][y].copy();
}
}
}
@@ -351,7 +351,7 @@ gui.tooltips.appliedenergistics2.ItemsRequestable=Items Requestable: %s
gui.tooltips.appliedenergistics2.P2PFrequency=Frequency: %s
gui.tooltips.appliedenergistics2.MultiplyByTwo=Double the items set
gui.tooltips.appliedenergistics2.MultiplyByTwoDesc=Will try to double the items set in the crafting slots
gui.tooltips.appliedenergistics2.MultiplyByThree=Tripe the items set
gui.tooltips.appliedenergistics2.MultiplyByThree=Triple the items set
gui.tooltips.appliedenergistics2.MultiplyByThreeDesc=Will try to triple the items set in the crafting slots
gui.tooltips.appliedenergistics2.IncreaseByOne=Add one
gui.tooltips.appliedenergistics2.IncreaseByOneDesc=Will try to add increase the items set in the crafting slots by one. DOES NOT MAINTAIN INGREDIENT RATIO