Allows the automation of Vibration Chambers with lava buckets

This commit is contained in:
Cricket 2015-06-21 12:57:59 -04:00 committed by thatsIch
parent 59dbfb1452
commit 8be68e9b22
2 changed files with 3 additions and 2 deletions

View File

@ -35,7 +35,6 @@ import appeng.util.iterators.InvIterator;
public class AppEngInternalInventory implements IInventory, Iterable<ItemStack>
{
protected final int size;
protected final ItemStack[] inv;
public boolean enableClientEvents = false;

View File

@ -20,6 +20,8 @@ package appeng.tile.misc;
import io.netty.buffer.ByteBuf;
import net.minecraft.init.Items;
import net.minecraft.inventory.IInventory;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
@ -142,7 +144,7 @@ public class TileVibrationChamber extends AENetworkInvTile implements IGridTicka
@Override
public boolean canExtractItem( int slotIndex, ItemStack extractedItem, EnumFacing side )
{
return false;
return extractedItem.getItem() == Items.bucket;
}
@Override