mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
formatting
This commit is contained in:
parent
c019c4a923
commit
fde92737eb
@ -297,8 +297,8 @@ public class TileEntityCoreEmitter extends TileEntityMachineBase implements IEne
|
||||
|
||||
// do some opencomputer stuff
|
||||
@Override
|
||||
public String getComponentName() {
|
||||
return "dfc_emitter";
|
||||
public String getComponentName() {
|
||||
return "dfc_emitter";
|
||||
}
|
||||
|
||||
@Callback
|
||||
|
||||
@ -185,8 +185,8 @@ public class TileEntityCoreInjector extends TileEntityMachineBase implements IFl
|
||||
|
||||
// do some opencomputer stuff
|
||||
@Override
|
||||
public String getComponentName() {
|
||||
return "dfc_injector";
|
||||
public String getComponentName() {
|
||||
return "dfc_injector";
|
||||
}
|
||||
|
||||
@Callback
|
||||
|
||||
@ -180,8 +180,8 @@ public class TileEntityCoreReceiver extends TileEntityMachineBase implements IEn
|
||||
|
||||
// do some opencomputer stuff
|
||||
@Override
|
||||
public String getComponentName() {
|
||||
return "dfc_receiver";
|
||||
public String getComponentName() {
|
||||
return "dfc_receiver";
|
||||
}
|
||||
|
||||
@Callback
|
||||
|
||||
@ -163,8 +163,8 @@ public class TileEntityCoreStabilizer extends TileEntityMachineBase implements I
|
||||
|
||||
// do some opencomputer stuff
|
||||
@Override
|
||||
public String getComponentName() {
|
||||
return "dfc_stabilizer";
|
||||
public String getComponentName() {
|
||||
return "dfc_stabilizer";
|
||||
}
|
||||
|
||||
@Callback
|
||||
|
||||
@ -211,8 +211,8 @@ public class TileEntityMachineReactorBreeding extends TileEntityMachineBase impl
|
||||
|
||||
// do some opencomputer stuff
|
||||
@Override
|
||||
public String getComponentName() {
|
||||
return "breeding_reactor";
|
||||
public String getComponentName() {
|
||||
return "breeding_reactor";
|
||||
}
|
||||
|
||||
@Callback
|
||||
|
||||
@ -396,8 +396,8 @@ public class TileEntityReactorResearch extends TileEntityMachineBase implements
|
||||
|
||||
// do some opencomputer stuff
|
||||
@Override
|
||||
public String getComponentName() {
|
||||
return "research_reactor";
|
||||
public String getComponentName() {
|
||||
return "research_reactor";
|
||||
}
|
||||
|
||||
@Callback
|
||||
|
||||
@ -520,8 +520,8 @@ public class TileEntityReactorZirnox extends TileEntityMachineBase implements IF
|
||||
|
||||
// do some opencomputer stuff
|
||||
@Override
|
||||
public String getComponentName() {
|
||||
return "zirnox_reactor";
|
||||
public String getComponentName() {
|
||||
return "zirnox_reactor";
|
||||
}
|
||||
|
||||
@Callback
|
||||
|
||||
@ -337,14 +337,14 @@ public class TileEntityCraneConsole extends TileEntity implements INBTPacketRece
|
||||
|
||||
// do some opencomputer stuff
|
||||
@Override
|
||||
public String getComponentName() {
|
||||
return "rbmk_crane";
|
||||
public String getComponentName() {
|
||||
return "rbmk_crane";
|
||||
}
|
||||
|
||||
@Callback
|
||||
@Optional.Method(modid = "OpenComputers")
|
||||
public Object[] move(Context context, Arguments args) {
|
||||
if (setUpCrane == true) {
|
||||
if(setUpCrane == true) {
|
||||
String textbruh = args.checkString(0);
|
||||
|
||||
switch(textbruh) {
|
||||
@ -356,10 +356,10 @@ public class TileEntityCraneConsole extends TileEntity implements INBTPacketRece
|
||||
if(!worldObj.isRemote) posFront -= speed;
|
||||
case "left":
|
||||
tiltLeft = 30;
|
||||
if(!worldObj.isRemote) posLeft += speed;
|
||||
if(!worldObj.isRemote) posLeft += speed;
|
||||
case "right":
|
||||
tiltLeft = -30;
|
||||
if(!worldObj.isRemote) posLeft -= speed;
|
||||
if(!worldObj.isRemote) posLeft -= speed;
|
||||
}
|
||||
|
||||
return new Object[] {};
|
||||
|
||||
@ -115,8 +115,8 @@ public abstract class TileEntityRBMKControl extends TileEntityRBMKSlottedBase im
|
||||
|
||||
// do some opencomputer stuff
|
||||
@Override
|
||||
public String getComponentName() {
|
||||
return "rbmk_control_rod";
|
||||
public String getComponentName() {
|
||||
return "rbmk_control_rod";
|
||||
}
|
||||
|
||||
@Callback
|
||||
|
||||
@ -353,11 +353,11 @@ public class TileEntityRBMKRod extends TileEntityRBMKSlottedBase implements IRBM
|
||||
|
||||
// do some opencomputer stuff
|
||||
@Override
|
||||
public String getComponentName() {
|
||||
if (isModerated() == true) {
|
||||
return "rbmk_moderated_fuel_rod";
|
||||
public String getComponentName() {
|
||||
if(isModerated() == true) {
|
||||
return "rbmk_moderated_fuel_rod";
|
||||
}
|
||||
return "rbmk_fuel_rod";
|
||||
return "rbmk_fuel_rod";
|
||||
}
|
||||
|
||||
@Callback
|
||||
|
||||
@ -305,8 +305,8 @@ public class TileEntityMachineBattery extends TileEntityMachineBase implements I
|
||||
|
||||
// do some opencomputer stuff
|
||||
@Override
|
||||
public String getComponentName() {
|
||||
return "ntm_energy_storage"; // need a way to somehow detect the first word of the energy storage block so people wont get confused when it comes to multiple energy storage blocks
|
||||
public String getComponentName() {
|
||||
return "ntm_energy_storage"; // need a way to somehow detect the first word of the energy storage block so people wont get confused when it comes to multiple energy storage blocks
|
||||
}
|
||||
|
||||
@Callback
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user