public TileEntity createNewTileEntity(World world, int metadata) {
switch(metadata) {
case REACTOR_CREATIVE_COOLANT_PORT:
return new TileEntityReactorCreativeCoolantPort();
case TURBINE_CREATIVE_FLUID_PORT:
return new TileEntityTurbineCreativeSteamGenerator();
default:
return null;
}
}