Quote from: VentroHawk on August 01, 2017, 04:44:34 AM
Hello, love the mods. Just came to inform you that the kitchen cupboards only work with the fueled stove, and not the electric one.
Hey, I ran into this issue too but managed to get it fixed.
All I did was edit "ExpandedCropsPatches.xml" at "SteamApps\workshop\content\294100\727124440\Patches\"
to include the following code at the very bottom of the file, directly above the closing </Patch>
Code Select
<Operation Class="PatchOperationSequence">
<success>Always</success>
<operations>
<li Class="PatchOperationTest">
<xpath>*/ThingDef[defName = "ElectricStove"]/comps/li[contains(@Class,'CompProperties_AffectedByFacilities')]/linkableFacilities</xpath>
</li>
<li Class="PatchOperationAdd">
<xpath>*/ThingDef[defName = "ElectricStove"]/comps/li[contains(@Class,'CompProperties_AffectedByFacilities')]/linkableFacilities</xpath>
<value>
<li>TCupboard</li>
</value>
</li>
</operations>
</Operation>
<Operation Class="PatchOperationSequence">
<success>Always</success>
<operations>
<li Class="PatchOperationTest">
<xpath>*/ThingDef[defName = "ElectricStove"]/comps/li[contains(@Class,'CompProperties_AffectedByFacilities')]/linkableFacilities</xpath>
<success>Invert</success>
</li>
<li Class="PatchOperationAdd">
<xpath>*/ThingDef[defName = "ElectricStove"]/comps</xpath>
<value>
<li Class="CompProperties_AffectedByFacilities">
<linkableFacilities>
<li>TCupboard</li>
</linkableFacilities>
</li>
</value>
</li>
</operations>
</Operation>I don't know if that's the correct way to fix it but it worked for me.