Fix ancestor calls...

This commit is contained in:
LemADEC 2014-10-05 22:58:59 +02:00
parent 347a8f0f2d
commit 4fbe46de27
8 changed files with 15 additions and 7 deletions

View file

@ -28,6 +28,7 @@ public class TileEntityCamera extends WarpInterfacedTE {
private int packetSendTicks = 20;
public TileEntityCamera() {
super();
peripheralName = "camera";
methodsArray = new String[] {
"freq"

View file

@ -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

View file

@ -61,6 +61,7 @@ public class TileEntityLaser extends WarpInterfacedTE {
private int packetSendTicks = 20;
public TileEntityLaser() {
super();
peripheralName = "laser";
methodsArray = new String[] {
"emitBeam", // 0

View file

@ -32,6 +32,7 @@ public class TileEntityLift extends WarpEnergyTE {
private int tickCount = 0;
public TileEntityLift() {
super();
peripheralName = "warpdriveLaserLift";
methodsArray = new String[] {
"getEnergyLevel",

View file

@ -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"
};
}

View file

@ -25,6 +25,7 @@ public class TileEntityMonitor extends WarpInterfacedTE {
private int packetSendTicks = 20;
public TileEntityMonitor() {
super();
peripheralName = "monitor";
methodsArray = new String[] {
"freq"

View file

@ -52,7 +52,8 @@ public class TileEntityProtocol extends WarpInterfacedTE {
private TileEntityReactor core = null;
public TileEntityProtocol() {
peripheralName = "warpcore";
super();
peripheralName = "warpcore";
methodsArray = new String[] {
"dim_positive",
"dim_negative",

View file

@ -48,6 +48,7 @@ public class TileEntityShipScanner extends WarpEnergyTE {
private int targetX, targetY, targetZ;
public TileEntityShipScanner() {
super();
peripheralName = "shipscanner";
methodsArray = new String[] {
"scan",