Resolved All grain/wheat villages have now "Cow" as Primary Production in their Tool Tip

Users who are viewing this thread

Version number
1.5.5
Branch
Beta
Modded/unmodded
No, I didn't use any mods.
As it states, after loading an old save of 1.5.4 to 1.5.5 every Village which is producing primaly "grain", the Tool Tip, if you hover over the Village, changed to "Primary Production: cow". Have to add, that they still produce "grain", so you only have to look if it is a grain field near the village.

Digging in the code i found something.
public void AddProductions()
{
MBObjectManager objectManager = Game.Current.ObjectManager;
this.AddProductions(this.VillageTypeWheatFarm, new ValueTuple<string, float>[]
{
new ValueTuple<string, float>("cow", 0.1f),
new ValueTuple<string, float>("sheep", 0.2f),
new ValueTuple<string, float>("hog", 0.3f),
new ValueTuple<string, float>("mule", 0.1f)
});

can it be related to it?
Edit: Ok it is related, the wheatFarms are also producing cow,sheep,hog, and mules....
 
Back
Top Bottom