Fix ancestor calls...
This commit is contained in:
parent
347a8f0f2d
commit
4fbe46de27
8 changed files with 15 additions and 7 deletions
|
@ -28,6 +28,7 @@ public class TileEntityCamera extends WarpInterfacedTE {
|
|||
private int packetSendTicks = 20;
|
||||
|
||||
public TileEntityCamera() {
|
||||
super();
|
||||
peripheralName = "camera";
|
||||
methodsArray = new String[] {
|
||||
"freq"
|
||||
|
|
|
@ -45,6 +45,7 @@ public class TileEntityCloakingDeviceCore extends WarpEnergyTE {
|
|||
private int soundTicks = 0;
|
||||
|
||||
public TileEntityCloakingDeviceCore() {
|
||||
super();
|
||||
peripheralName = "cloakingdevicecore";
|
||||
methodsArray = new String[] {
|
||||
"tier", // set field tier to 1 or 2, return field tier
|
||||
|
|
|
@ -61,6 +61,7 @@ public class TileEntityLaser extends WarpInterfacedTE {
|
|||
private int packetSendTicks = 20;
|
||||
|
||||
public TileEntityLaser() {
|
||||
super();
|
||||
peripheralName = "laser";
|
||||
methodsArray = new String[] {
|
||||
"emitBeam", // 0
|
||||
|
|
|
@ -32,6 +32,7 @@ public class TileEntityLift extends WarpEnergyTE {
|
|||
private int tickCount = 0;
|
||||
|
||||
public TileEntityLift() {
|
||||
super();
|
||||
peripheralName = "warpdriveLaserLift";
|
||||
methodsArray = new String[] {
|
||||
"getEnergyLevel",
|
||||
|
|
|
@ -65,14 +65,15 @@ public class TileEntityMiningLaser extends WarpInterfacedTE implements IGridMach
|
|||
private int layerOffset = 1;
|
||||
|
||||
public TileEntityMiningLaser() {
|
||||
super();
|
||||
peripheralName = "mininglaser";
|
||||
methodsArray = new String[] {
|
||||
"mine", //0
|
||||
"stop", //1
|
||||
"isMining", //2
|
||||
"quarry", //3
|
||||
"state", //4
|
||||
"offset" //5
|
||||
"mine",
|
||||
"stop",
|
||||
"isMining",
|
||||
"quarry",
|
||||
"state",
|
||||
"offset"
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -25,6 +25,7 @@ public class TileEntityMonitor extends WarpInterfacedTE {
|
|||
private int packetSendTicks = 20;
|
||||
|
||||
public TileEntityMonitor() {
|
||||
super();
|
||||
peripheralName = "monitor";
|
||||
methodsArray = new String[] {
|
||||
"freq"
|
||||
|
|
|
@ -52,6 +52,7 @@ public class TileEntityProtocol extends WarpInterfacedTE {
|
|||
private TileEntityReactor core = null;
|
||||
|
||||
public TileEntityProtocol() {
|
||||
super();
|
||||
peripheralName = "warpcore";
|
||||
methodsArray = new String[] {
|
||||
"dim_positive",
|
||||
|
|
|
@ -48,6 +48,7 @@ public class TileEntityShipScanner extends WarpEnergyTE {
|
|||
private int targetX, targetY, targetZ;
|
||||
|
||||
public TileEntityShipScanner() {
|
||||
super();
|
||||
peripheralName = "shipscanner";
|
||||
methodsArray = new String[] {
|
||||
"scan",
|
||||
|
|
Loading…
Reference in a new issue