settingString = new BeefGuiLabel(this, "Pick a setting", leftX, topY);
topY += settingString.getHeight() + 4;
// Setting picker
BlockReactorPart reactorPartBlock = (BlockReactorPart)BigReactors.blockReactorPart;
int buttonOrdinal = MINIMUM_SETTING_SELECTOR_ID;
leftX = guiLeft + 16;
CircuitType currentCircuitType = port.getCircuitType();
for(CircuitType ct : CircuitType.values()) {
if(ct == CircuitType.DISABLED) { continue; }
GuiSelectableButton newBtn = new GuiSelectableButton(buttonOrdinal++, leftX, topY, reactorPartBlock.getRedNetConfigIcon(ct), 0xFF00FF00, this);
newBtn.displayString = GuiReactorRedNetPort.grabbableTooltips[ct.ordinal()-1];
if(ct == currentCircuitType) {
newBtn.setSelected(true);
}