Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed slot maximum adding Strength score instead of modifier #42

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions darksheet/darksheet.js
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ async function darkSheetSetup(app, html, data) {

let maxSlots = 18;
let percentage = 0;
let STRBONUS = actor.system.abilities.str.value * Math.max(1, Math.min(actor.system.attributes.encumbrance.mod, 8));
let STRBONUS = actor.system.abilities.str.mod * Math.max(1, Math.min(actor.system.attributes.encumbrance.mod, 8));

if (actor.flags.darksheet && actor.flags.darksheet.attributes) {
switch (actor.system.traits.size) {
Expand Down Expand Up @@ -1957,4 +1957,4 @@ const fragileItems = [
"Pen",
"Parchment",
"Paper"
];
];