I notice this when I was modding the game. XML misses `label` for certain tools
Not sure if this is on purpose
This is Ibex, you can see it misses `<label>teeth</label>`
<li>
<capacities>
<li>Bite</li>
</capacities>
<power>8</power>
<cooldownTime>2</cooldownTime>
<linkedBodyPartsGroup>Teeth</linkedBodyPartsGroup>
<chanceFactor>0.5</chanceFactor>
</li>
This is Deer, it is correct
<li>
<label>teeth</label>
<capacities>
<li>Bite</li>
</capacities>
<power>8</power>
<cooldownTime>2</cooldownTime>
<linkedBodyPartsGroup>Teeth</linkedBodyPartsGroup>
<chanceFactor>0.5</chanceFactor>
</li>
Thanks for the bug report, I will be getting this put into our internal dev trackers. Appreciate the keen eye!