Fixed invalid slot usage in tuning driver recipe handler
This commit is contained in:
parent
46f8ce5aba
commit
93d2d0e417
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ public class RecipeTuningDriver implements IRecipe {
|
|||
boolean isConsumableFound = false;
|
||||
int dye = 0;
|
||||
int countDyesFound = 0;
|
||||
for (int indexSlot = 0; indexSlot <= inventoryCrafting.getSizeInventory(); indexSlot++) {
|
||||
for (int indexSlot = 0; indexSlot < inventoryCrafting.getSizeInventory(); indexSlot++) {
|
||||
final ItemStack itemStackSlot = inventoryCrafting.getStackInSlot(indexSlot);
|
||||
|
||||
//noinspection StatementWithEmptyBody
|
||||
|
|
Loading…
Add table
Reference in a new issue