Tweaked Terminal Gui to use smaller textures.
Crafting Terminal Added, ( incomplete ) Moved FMP Cut-able Registration to Init. Upgrades now drop when parts break. TE -> TE3 pulverizer api.
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
package appeng.container.implementations;
|
||||
|
||||
import net.minecraft.entity.player.InventoryPlayer;
|
||||
import appeng.api.storage.IStorageMonitorable;
|
||||
import appeng.container.slot.SlotNormal;
|
||||
import appeng.container.slot.SlotOutput;
|
||||
import appeng.parts.reporting.PartCraftingTerminal;
|
||||
|
||||
public class ContainerCraftingTerm extends ContainerMEMonitorable
|
||||
{
|
||||
|
||||
PartCraftingTerminal ct;
|
||||
|
||||
SlotNormal craftingSlots[] = new SlotNormal[9];
|
||||
SlotOutput outputSlot;
|
||||
|
||||
public ContainerCraftingTerm(InventoryPlayer ip, IStorageMonitorable montiorable) {
|
||||
super( ip, montiorable, false );
|
||||
ct = (PartCraftingTerminal) montiorable;
|
||||
|
||||
bindPlayerInventory( ip, 0, 0 );
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user