Fixed difital transformer gui bug
This commit is contained in:
parent
121b19fa2e
commit
4e7734a714
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ public class GT_Container_DigitalTransformer extends GT_ContainerMetaTile_Machin
|
||||||
Slot tSlot = (Slot) inventorySlots.get(aSlotIndex);
|
Slot tSlot = (Slot) inventorySlots.get(aSlotIndex);
|
||||||
if (tSlot != null && mTileEntity.getMetaTileEntity() != null) {
|
if (tSlot != null && mTileEntity.getMetaTileEntity() != null) {
|
||||||
GT_MetaTileEntity_Digital_Transformer dpg = (GT_MetaTileEntity_Digital_Transformer) mTileEntity.getMetaTileEntity();
|
GT_MetaTileEntity_Digital_Transformer dpg = (GT_MetaTileEntity_Digital_Transformer) mTileEntity.getMetaTileEntity();
|
||||||
if (aSlotIndex > 11) {
|
if (aSlotIndex > 5) {
|
||||||
return super.slotClick(aSlotIndex, aMouseclick, aShifthold, aPlayer);
|
return super.slotClick(aSlotIndex, aMouseclick, aShifthold, aPlayer);
|
||||||
}
|
}
|
||||||
int mult = (aSlotIndex > 2 ? 1 : -1);
|
int mult = (aSlotIndex > 2 ? 1 : -1);
|
||||||
|
|
Loading…
Reference in a new issue