1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
package tectech.thing.cover;
import net.minecraftforge.common.util.ForgeDirection;
import net.minecraftforge.fluids.Fluid;
import gregtech.api.interfaces.tileentity.ICoverable;
public class CoverTeslaCoilUltimate extends CoverTeslaCoil {
public CoverTeslaCoilUltimate() {}
@Override
public boolean letsEnergyOut(ForgeDirection side, int aCoverID, int aCoverVariable, ICoverable aTileEntity) {
return true;
}
@Override
public boolean letsItemsIn(ForgeDirection side, int aCoverID, int aCoverVariable, int aSlot,
ICoverable aTileEntity) {
return true;
}
@Override
public boolean letsItemsOut(ForgeDirection side, int aCoverID, int aCoverVariable, int aSlot,
ICoverable aTileEntity) {
return true;
}
@Override
public boolean letsFluidIn(ForgeDirection side, int aCoverID, int aCoverVariable, Fluid aFluid,
ICoverable aTileEntity) {
return true;
}
@Override
public boolean letsFluidOut(ForgeDirection side, int aCoverID, int aCoverVariable, Fluid aFluid,
ICoverable aTileEntity) {
return true;
}
public byte getTeslaReceptionCapability() {
return 1;
}
}
|