RimWorld

RimWorld

Expanded Prosthetics and Organ Engineering
ArbitrageX Oct 5, 2016 @ 4:22pm
[Bug] 10 surrogate livers to create 1 synthetic
There's a typo in the count field recipie_synthesizer.xml
This is the first issue i've seen however. Good work! I'm very interested to see some of the items in the xml that haven't made it to the game yet. Synthetic Skin!
< >
Showing 1-4 of 4 comments
nephilimnexus Oct 21, 2016 @ 11:55am 
Yep, found it, line 247:

<count>10</count>

Should read:

<count>1</count>




Entire entry:

<RecipeDef ParentName="RecipeSyntheticOrgan">
<defName>CreateSyntheticLiver</defName>
<label>Create synthetic liver</label>
<description>Creates a synthetic liver from hyperweave, advanced components and their surrogate counterpart and advanced components.</description>
<jobString>Creating synthetic organ.</jobString>
<ingredients>
<li>
<filter>
<thingDefs>
<li>SurrogateLiver</li>
</thingDefs>
</filter>
<count>10</count>
</li>
<li>
<filter>
<thingDefs>
<li>Hyperweave</li>
</thingDefs>
</filter>
<count>10</count>
</li>
<li>
<filter>
<thingDefs>
<li>AdvancedComponents</li>
</thingDefs>
</filter>
<count>1</count>
</li>
</ingredients>
<fixedIngredientFilter>
<thingDefs>
<li>SurrogateLiver</li>
<li>Hyperweave</li>
<li>AdvancedComponents</li>
</thingDefs>
</fixedIngredientFilter>
<products>
<SyntheticLiver>1</SyntheticLiver>
</products>
</RecipeDef>

Fix:

<RecipeDef ParentName="RecipeSyntheticOrgan">
<defName>CreateSyntheticLiver</defName>
<label>Create synthetic liver</label>
<description>Creates a synthetic liver from hyperweave, advanced components and their surrogate counterpart and advanced components.</description>
<jobString>Creating synthetic organ.</jobString>
<ingredients>
<li>
<filter>
<thingDefs>
<li>SurrogateLiver</li>
</thingDefs>
</filter>
<count>1</count>
</li>
<li>
<filter>
<thingDefs>
<li>Hyperweave</li>
</thingDefs>
</filter>
<count>10</count>
</li>
<li>
<filter>
<thingDefs>
<li>AdvancedComponents</li>
</thingDefs>
</filter>
<count>1</count>
</li>
</ingredients>
<fixedIngredientFilter>
<thingDefs>
<li>SurrogateLiver</li>
<li>Hyperweave</li>
<li>AdvancedComponents</li>
</thingDefs>
</fixedIngredientFilter>
<products>
<SyntheticLiver>1</SyntheticLiver>
</products>
</RecipeDef>

nephilimnexus Oct 30, 2016 @ 11:19pm 
Well this bug, and it's solution, has been up here for ten days now and yet the mod author has yet to implement this simple one keystroke fix. Not sure what to think of that.
:steambored:
nephilimnexus Nov 11, 2016 @ 12:08pm 
I'm calling it now: This mod is abandoned.
Battleseed Nov 16, 2016 @ 1:11pm 
Originally posted by nephilimnexus:
I'm calling it now: This mod is abandoned.
Prob till A16
< >
Showing 1-4 of 4 comments
Per page: 1530 50