[1.3.3200] Missing labels for some tools of pawn

Started by colinfang, February 03, 2022, 07:30:17 AM

Previous topic - Next topic

colinfang

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>

Pheanox

Thanks for the bug report, I will be getting this put into our internal dev trackers.  Appreciate the keen eye!