mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-08-10 17:55:44 +00:00
ok it works
ok
This commit is contained in:
parent
6240294525
commit
adaab85b3a
@ -197,7 +197,7 @@ public class TileEntityPADetector extends TileEntityCooledBase implements IGUIPr
|
||||
}
|
||||
@Override
|
||||
public String provideRORValue(String name) {
|
||||
if((PREFIX_VALUE + "temperature").equals(name)) return "" + this.temperature;
|
||||
if((PREFIX_VALUE + "temperature").equals(name)) return "" + (int) this.temperature;
|
||||
if((PREFIX_VALUE + "pfmcold").equals(name)) return "" + coolantTanks[0].getFill();
|
||||
if((PREFIX_VALUE + "pfm").equals(name)) return "" + coolantTanks[1].getFill();
|
||||
return null;
|
||||
|
||||
@ -401,7 +401,7 @@ public class TileEntityPADipole extends TileEntityCooledBase implements IGUIProv
|
||||
|
||||
@Override
|
||||
public String provideRORValue(String name) {
|
||||
if((PREFIX_VALUE + "temperature").equals(name)) return "" + this.temperature;
|
||||
if((PREFIX_VALUE + "temperature").equals(name)) return "" + (int) this.temperature;
|
||||
if((PREFIX_VALUE + "pfmcold").equals(name)) return "" + coolantTanks[0].getFill();
|
||||
if((PREFIX_VALUE + "pfm").equals(name)) return "" + coolantTanks[1].getFill();
|
||||
return null;
|
||||
|
||||
@ -148,7 +148,7 @@ public class TileEntityPAQuadrupole extends TileEntityCooledBase implements IGUI
|
||||
}
|
||||
@Override
|
||||
public String provideRORValue(String name) {
|
||||
if((PREFIX_VALUE + "temperature").equals(name)) return "" + (int) this.temperature;
|
||||
if((PREFIX_VALUE + "temperature").equals(name)) return "" + (int) this.temperature;
|
||||
if((PREFIX_VALUE + "pfmcold").equals(name)) return "" + coolantTanks[0].getFill();
|
||||
if((PREFIX_VALUE + "pfm").equals(name)) return "" + coolantTanks[1].getFill();
|
||||
return null;
|
||||
|
||||
@ -140,7 +140,7 @@ public class TileEntityPARFC extends TileEntityCooledBase implements IGUIProvide
|
||||
}
|
||||
@Override
|
||||
public String provideRORValue(String name) {
|
||||
if((PREFIX_VALUE + "temperature").equals(name)) return "" + this.temperature;
|
||||
if((PREFIX_VALUE + "temperature").equals(name)) return "" + (int) this.temperature;
|
||||
if((PREFIX_VALUE + "pfmcold").equals(name)) return "" + coolantTanks[0].getFill();
|
||||
if((PREFIX_VALUE + "pfm").equals(name)) return "" + coolantTanks[1].getFill();
|
||||
return null;
|
||||
|
||||
@ -471,7 +471,7 @@ public class TileEntityPASource extends TileEntityCooledBase implements IGUIProv
|
||||
if((PREFIX_VALUE + "defocus").equals(name)) {
|
||||
return this.particle != null ? "" + this.particle.defocus : "0";
|
||||
}
|
||||
if((PREFIX_VALUE + "temperature").equals(name)) return "" + this.temperature;
|
||||
if((PREFIX_VALUE + "temperature").equals(name)) return "" + (int) this.temperature;
|
||||
if((PREFIX_VALUE + "pfmcold").equals(name)) return "" + coolantTanks[0].getFill();
|
||||
if((PREFIX_VALUE + "pfm").equals(name)) return "" + coolantTanks[1].getFill();
|
||||
return null;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user