Update TileEntityRBMKRodReaSim.java

This commit is contained in:
Voxelstice 2022-05-13 16:25:29 +10:00 committed by GitHub
parent 60b1e7fcb3
commit f0ba4776b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,4 +52,13 @@ public class TileEntityRBMKRodReaSim extends TileEntityRBMKRod {
public ColumnType getConsoleType() {
return ColumnType.FUEL_SIM;
}
// do some opencomputer stuff
@Override
public String getComponentName() {
if (isModerated() == true) {
return "rbmk_moderated_fuel_rod_reasim";
}
return "rbmk_fuel_rod_reasim";
}
}