Herro Kapt
This is the code I added to your surgeries xml right underneath dementia. Even with this her pawns still weren't showing the surgery for the sleeping sickness at the time, only the removal of scars they had. (showing both the dementia first and mine for reference)
This is the code I added to your surgeries xml right underneath dementia. Even with this her pawns still weren't showing the surgery for the sleeping sickness at the time, only the removal of scars they had. (showing both the dementia first and mine for reference)
Code Select
<!-- Very Hard Surgery -->
<!-- Chronic: Dementia -->
<RecipeDef ParentName="SurgeryVeryHard">
<defName>CureChronicDementia</defName>
<label>cure dementia (3 Glit. Med)</label>
<description>Cure dementia.</description>
<workerClass>Recipe_RemoveHediff</workerClass>
<successfullyRemovedHediffMessage>{0} has successfully treated {1}'s dementia.</successfullyRemovedHediffMessage>
<jobString>Curing dementia.</jobString>
<ingredients>
<li>
<filter>
<categories>
<li>Medicine</li>
</categories>
</filter>
<count>3</count>
</li>
</ingredients>
<fixedIngredientFilter>
<categories>
<li>Medicine</li>
</categories>
<exceptedThingDefs>
<li>HerbalMedicine</li>
<li>Medicine</li>
</exceptedThingDefs>
</fixedIngredientFilter>
<removesHediff>Dementia</removesHediff>
</RecipeDef>
<!-- Cure Sleeping Sickness -->
<RecipeDef ParentName="SurgeryVeryHard">
<defName>CureSleepingSickness</defName>
<label>cure sleeping sickness (3 Glit. Med)</label>
<description>Cure sleeping sickness.</description>
<workerClass>Recipe_RemoveHediff</workerClass>
<successfullyRemovedHediffMessage>{0} has successfully treated {1}'s sleeping sickness.</successfullyRemovedHediffMessage>
<jobString>Curing sleeping sickness.</jobString>
<ingredients>
<li>
<filter>
<categories>
<li>Medicine</li>
</categories>
</filter>
<count>3</count>
</li>
</ingredients>
<fixedIngredientFilter>
<categories>
<li>Medicine</li>
</categories>
<exceptedThingDefs>
<li>HerbalMedicine</li>
<li>Medicine</li>
</exceptedThingDefs>
</fixedIngredientFilter>
<removesHediff>SleepingSickness</removesHediff>
</RecipeDef>