rimworld-animations-patch_m.../Patches/OTYNude_AnusPatch.xml
AbstractConcept cce0053fd6 v 2.0.4
- Fixed a bug that was causing body parts to render over clothes
2023-02-07 23:53:27 -06:00

24 lines
No EOL
744 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<Patch>
<Operation Class="PatchOperationFindMod">
<mods>
<li>OTY_NUDE Unofficial Update</li>
</mods>
<match Class="PatchOperationSequence">
<operations>
<!-- Anus should be behind the pawn -->
<li Class="PatchOperationConditional">
<xpath>Defs/ThingDef/alienRace/generalSettings/alienPartGenerator/bodyAddons/li[bodyPart="Anus"]/inFrontOfBody</xpath>
<match Class="PatchOperationReplace">
<xpath>Defs/ThingDef/alienRace/generalSettings/alienPartGenerator/bodyAddons/li[bodyPart="Anus"]/inFrontOfBody</xpath>
<value>
<inFrontOfBody>false</inFrontOfBody>
</value>
</match>
</li>
</operations>
</match>
</Operation>
</Patch>