Change food consumption

GlobalDefines.XML, FOOD_CONSUMPTION_PER_POPULATION

I haven't checked if it works, but I'm going to make this change in my mod too.
 
You can do it in XML too, but I prefer SQL:

Code:
UPDATE Defines
SET Value = 3
WHERE Name = "FOOD_CONSUMPTION_PER_POPULATION";
 
Back
Top Bottom