Single Player Not selecting 8+ char slots

Anything beyond my 8th slot in single player can’t be selected by the bot. It scrolls down to look for it but then hits exit and tries again 2 more time with the same result and then stops. I have this in my starter config.

// Single Player screen fix
if (getLocation() === 12 && !getControl(4, 626, 100, 151, 44)) {
	ControlAction.click(6, 33, 572, 128, 35);

	break;
}

I have version 19.3.3.100 of the bot and it says it’s up to date

I’ve figured it out in your starter script make these changes

// Single Player screen fix
if (getLocation() === 12 && !getControl()) {
	ControlAction.click();

	break;
}