superseva / mutant-year-zero

Mutant Year Zero system for FoundryVTT
GNU General Public License v3.0
8 stars 21 forks source link

Problem in encumbrance calculus #42

Closed Gyaile closed 2 years ago

Gyaile commented 2 years ago

In the actor.js file line 65, the encumbrance calculus of the bullets is : _totalWeight += parseInt(data.resources.bullets.value) / 10; It should be : _totalWeight += parseInt(data.resources.bullets.value) / 20; according to the rules. 10 bullets count as a tiny item and 20 bullets as a regular item.

superseva commented 2 years ago

oh. I'll fix it in the next update. Thanks for noticing it

superseva commented 2 years ago

fixed