Applied-Energistics-2-tiler.../container/slot/SlotPatternOutputs.java
AlgorithmX2 1747204928 Feature: #0675 - Drag'n'Drop functionality when making patterns
Fixed a bug where pattern would not properly re-populate the pattern terminal when they were re-inserted.
Shift clicking into the inscriber is more intelligent.
2014-07-19 14:33:28 -05:00

24 lines
477 B
Java

package appeng.container.slot;
import net.minecraft.inventory.IInventory;
public class SlotPatternOutputs extends OptionalSlotFake
{
public SlotPatternOutputs(IInventory inv, IOptionalSlotHost containerBus, int idx, int x, int y, int offX, int offY, int groupNum) {
super( inv, containerBus, idx, x, y, offX, offY, groupNum );
}
@Override
public boolean isEnabled()
{
return true;
}
@Override
public boolean shouldDisplay()
{
return super.isEnabled();
}
}