This commit is contained in:
parent
86bee5639c
commit
4207532ded
5 changed files with 25 additions and 0 deletions
|
@ -166,4 +166,9 @@ public class TileChargeOMat extends TilePowerAcceptor
|
|||
.tile(this).energySlot(0, 62, 25).energySlot(1, 98, 25).energySlot(2, 62, 45).energySlot(3, 98, 45)
|
||||
.energySlot(4, 62, 65).energySlot(5, 98, 65).syncEnergyValue().addInventory().create();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canBeUpgraded() {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -47,4 +47,9 @@ public class TileDigitalChest extends TileTechStorageBase implements IContainerP
|
|||
return new ContainerBuilder("digitalchest").player(player.inventory).inventory().hotbar().addInventory()
|
||||
.tile(this).slot(0, 80, 24).outputSlot(1, 80, 64).addInventory().create();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canBeUpgraded() {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -47,4 +47,9 @@ public class TileQuantumChest extends TileTechStorageBase implements IContainerP
|
|||
return new ContainerBuilder("quantumchest").player(player.inventory).inventory().hotbar().addInventory()
|
||||
.tile(this).slot(0, 80, 24).outputSlot(1, 80, 64).addInventory().create();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canBeUpgraded() {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -219,4 +219,9 @@ public abstract class TileBaseFluidGenerator extends TilePowerAcceptor implement
|
|||
public float getWrenchDropRate() {
|
||||
return 1.0F;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canBeUpgraded() {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -211,4 +211,9 @@ public class TileSolidFuelGenerator extends TilePowerAcceptor implements IWrench
|
|||
public int[] getSlotsForFace(EnumFacing side) {
|
||||
return new int[] { fuelSlot };
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canBeUpgraded() {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue