Hi,
I was cleaning a little bit my game because I have a lot of bug due to many mods (and not really clean update for my personal mod) but I found a bug in the game itself.
Here was the line in the debug log :
After a bit of research, the error was cause by a typo in this file : \Mods\Core\Defs\JobDefs\ItemCollectionGeneratorDefs\ItemCollectionGenerators_General.xml
but with the B18, Neurotrainer def changed and the good code is now :
I was septic about the error but after, I reload the game and no more references to a Neurotrainer error. I hope I didn't make a mistake and help a bit
I was cleaning a little bit my game because I have a lot of bug due to many mods (and not really clean update for my personal mod) but I found a bug in the game itself.
Here was the line in the debug log :
QuoteCould not resolve cross-reference to Verse.ThingDef named Neurotrainer
After a bit of research, the error was cause by a typo in this file : \Mods\Core\Defs\JobDefs\ItemCollectionGeneratorDefs\ItemCollectionGenerators_General.xml
Quote<ItemCollectionGeneratorDef>
<defName>Neurotrainers</defName>
<label>neurotrainers</label>
<workerClass>ItemCollectionGenerator_Standard</workerClass>
<allowedDefs>
<li>Neurotrainer</li>
</allowedDefs>
</ItemCollectionGeneratorDef>
but with the B18, Neurotrainer def changed and the good code is now :
Quote<ItemCollectionGeneratorDef>
<defName>Neurotrainers</defName>
<label>neurotrainers</label>
<workerClass>ItemCollectionGenerator_Standard</workerClass>
<allowedDefs>
<li>MechSerumNeurotrainer</li>
</allowedDefs>
</ItemCollectionGeneratorDef>
I was septic about the error but after, I reload the game and no more references to a Neurotrainer error. I hope I didn't make a mistake and help a bit
