Fix JEI transfer fix. Typo correction.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user