2013-06-20 18:29:39 +02:00
|
|
|
/**
|
|
|
|
* Copyright (c) SpaceToad, 2011
|
|
|
|
* http://www.mod-buildcraft.com
|
|
|
|
*
|
|
|
|
* BuildCraft is distributed under the terms of the Minecraft Mod Public
|
|
|
|
* License 1.0, or MMPL. Please check the contents of the license located in
|
|
|
|
* http://www.mod-buildcraft.com/MMPL-1.0.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
package buildcraft.api.bptblocks;
|
|
|
|
|
|
|
|
import buildcraft.api.blueprints.BptBlock;
|
|
|
|
import buildcraft.api.blueprints.BptSlotInfo;
|
|
|
|
import buildcraft.api.blueprints.IBptContext;
|
2013-08-08 19:10:11 +02:00
|
|
|
import java.util.LinkedList;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2013-06-20 18:29:39 +02:00
|
|
|
|
|
|
|
@Deprecated
|
|
|
|
public class BptBlockIgnore extends BptBlock {
|
|
|
|
|
|
|
|
public BptBlockIgnore(int blockId) {
|
|
|
|
super(blockId);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void addRequirements(BptSlotInfo slot, IBptContext context, LinkedList<ItemStack> requirements) {
|
|
|
|
requirements.add(new ItemStack(slot.blockId, 0, 0));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isValid(BptSlotInfo slot, IBptContext context) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void rotateLeft(BptSlotInfo slot, IBptContext context) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean ignoreBuilding(BptSlotInfo slot) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|