TheGreys Bug report.
You have
if Mc_AlphaM and Mc_SigmaM > 8:
as the lead in a conditional (you know where) but it's not doing what you think or intend it to do. For what you desire you need to write it as:
if Mc_AlphaM > 8 and Mc_SigmaM > 8:
You might ask why. Well, it's simple really. The current conditional sees exactly "if Mc_AlphaM is True and if Mc_SigmaM is greater than 8" which is not what you want (obviously since
Mc_AlphaM
is an integer and not a boolean).
I'll fix it in the mod release fwiw. Regards.