in the .cs file, lines 1696 - 1698 in the function public void CheckBradley() is currently as below:

Bradley.Refresh(storedData, PlayerPanels);
BradleyTimer = false;
Bradley.SetActivity(false);


but the Bradley.SetActivity needs to be set first, not last.

as shown below is how I fixed it:

Bradley.SetActivity(false);
Bradley.Refresh(storedData, PlayerPanels);
BradleyTimer = false;