It's right this code?

num_of_civilian_factories_available_for_projects = { num_of_civilian_factories_available_for_projects > 0 }


This is just a check that a focus/event/etc. can use. It should look like:

num_of_civilian_factories_available_for_projects > 0


You'll never find anything where it opens braces, and then uses the same thing inside it, e.g.

option = { option = 1 }

This is just a check that a focus/event/etc. can use. It should look like:

num_of_civilian_factories_available_for_projects > 0


You'll never find anything where it opens braces, and then uses the same thing inside it, e.g.

option = { option = 1 }

-jordsta95

 Thank you.