Tell me, how can I implement a simple task like limiting the increase in the number of neutral creatures? For example, if the default value is 10 peasants, how can I prevent them from increasing to, say, 40 after 2 weeks?
"IF the number of peasants > 10, then the number of peasants = 10" (or something similar). The condition is checked every day.