You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When rolling for initiative, an error is produced: Error: A Die term must have a numeric number of faces.
This is caused by setting actorData.attributes.init.mod to the string representation of that modifier.
Additionally, none of the other values are applied because they are being set to value and total, neither of which are included in the basic initiative formula. This can be corrected by replacing lines 101-104 with
When rolling for initiative, an error is produced: Error: A Die term must have a numeric number of faces.
This is caused by setting actorData.attributes.init.mod to the string representation of that modifier.
Additionally, none of the other values are applied because they are being set to value and total, neither of which are included in the basic initiative formula. This can be corrected by replacing lines 101-104 with
actorData.attributes.init.bonus = monsterData.initiative.value;
The text was updated successfully, but these errors were encountered: