边缘世界 RimWorld

边缘世界 RimWorld

Expanded Prosthetics and Organ Engineering
ArbitrageX 2016 年 10 月 5 日 下午 4:22
[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!
< >
正在显示第 1 - 4 条,共 4 条留言
nephilimnexus 2016 年 10 月 21 日 上午 11:55 
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 2016 年 10 月 30 日 下午 11:19 
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 2016 年 11 月 11 日 下午 12:08 
I'm calling it now: This mod is abandoned.
Battleseed 2016 年 11 月 16 日 下午 1:11 
引用自 nephilimnexus
I'm calling it now: This mod is abandoned.
Prob till A16
< >
正在显示第 1 - 4 条,共 4 条留言
每页显示数: 1530 50