Noisy Pants
Refugee
There are two recipes for glue, one for the campfire and one for the chemistry station. My mod makes the chemistry station more rewarding since it is an advanced piece of equipment. Here is the original code that I have that works but it deletes the campfire glue instead of the chemistry station glue:
I know I'm close because the game gave me this message:

here is what i got to get that message:
Code:
<remove xpath="/recipes/recipe[@name='resourceGlue']"></remove>
<append xpath="/recipes">
<recipe name="resourceGlue" count="3" craft_area="chemistryStation">
<ingredient name="resourceFemur" count="1"/>
<ingredient name="drinkJarRiverWater" count="1"/>
</recipe>
</append>

here is what i got to get that message:
Code:
<remove xpath="/recipes/recipe[@name='resourceGlue']/@count='1'/@craft_area='chemistryStation'"></remove>
<append xpath="/recipes">
<recipe name="resourceGlue" count="3" craft_area="chemistryStation">
<ingredient name="resourceFemur" count="1"/>
<ingredient name="drinkJarRiverWater" count="1"/>
</recipe>
</append>