red = green = blue = 1f;
iconSide = BigReactors.fluidFuelColumn.getFlowingIcon();
iconBottom = BigReactors.fluidFuelColumn.getStillIcon();
ReactantData fuelData = Reactants.getReactant(reactor.getFuelType());
ReactantData wasteData = Reactants.getReactant(reactor.getWasteType());
int fuelColor = fuelData != null ? fuelData.getColor() : StandardReactants.colorYellorium;
int wasteColor = wasteData != null ? wasteData.getColor() : StandardReactants.colorCyanite;
if(fuelAmount == 0) {
red = unpackR(wasteColor);
green = unpackG(wasteColor);
blue = unpackB(wasteColor);