More Renames

This commit is contained in:
Sebastian Hartte
2020-06-02 02:38:10 +02:00
parent fc300745cd
commit d4c9e5c490
9 changed files with 28 additions and 32 deletions
@@ -29,7 +29,7 @@ import java.util.Map.Entry;
import com.google.common.collect.ImmutableList;
import net.minecraft.inventory.InventoryCrafting;
import net.minecraft.inventory.CraftingInventory;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.CompoundNBT;
import net.minecraft.nbt.ListNBT;
@@ -646,7 +646,7 @@ public final class CraftingCPUCluster implements IAECluster, ICraftingCPU
if( this.canCraft( details, details.getCondensedInputs() ) )
{
InventoryCrafting ic = null;
CraftingInventory ic = null;
for( final ICraftingMedium m : cc.getMediums( e.getKey() ) )
{
@@ -676,7 +676,7 @@ public final class CraftingCPUCluster implements IAECluster, ICraftingCPU
continue;
}
ic = new InventoryCrafting( new ContainerNull(), 3, 3 );
ic = new CraftingInventory( new ContainerNull(), 3, 3 );
boolean found = false;
for( int x = 0; x < input.length; x++ )