Fix scanner not accepting power

This commit is contained in:
LemADEC 2014-09-14 05:55:18 +02:00
parent 55519c4eb1
commit a423c6d180

View file

@ -599,6 +599,11 @@ public class TileEntityShipScanner extends WarpEnergyTE implements IPeripheral {
}
// IEnergySink methods implementation
@Override
public int getMaxEnergyStored() {
return MAX_ENERGY_VALUE;
}
@Override
public int getMaxSafeInput() {
return Integer.MAX_VALUE;