Skip to content

Commit e45571b

Browse files
committed
Updated GroupInitiative to v0.9.41
1 parent f379969 commit e45571b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

GroupInitiative/0.9.41/GroupInitiative.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const GroupInitiative = (() => { // eslint-disable-line no-unused-vars
1010
const scriptName = "GroupInitiative";
1111
const version = '0.9.41';
1212
API_Meta.GroupInitiative.version = version;
13-
const lastUpdate = 1737313521;
13+
const lastUpdate = 1737482748;
1414
const schemaVersion = 1.3;
1515

1616
const isString = (s)=>'string'===typeof s || s instanceof String;
@@ -1394,7 +1394,7 @@ const makeRollsForIDs = async (ids,options={}) => {
13941394
g.roll.push(bonus);
13951395

13961396
if(options.manualBonus){
1397-
g.roll.push( options.manualBonus );
1397+
g.roll.push( `${options.manualBonus}`.trim() );
13981398
}
13991399
g.label = rolladj.label||(rolladj.hasOwnProperty('index') ? `Rule #${rolladj.index+1}` : `No Matching Rule`);
14001400
g.formula = initFunc(g,rolladj);

GroupInitiative/GroupInitiative.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const GroupInitiative = (() => { // eslint-disable-line no-unused-vars
1010
const scriptName = "GroupInitiative";
1111
const version = '0.9.41';
1212
API_Meta.GroupInitiative.version = version;
13-
const lastUpdate = 1737313521;
13+
const lastUpdate = 1737482748;
1414
const schemaVersion = 1.3;
1515

1616
const isString = (s)=>'string'===typeof s || s instanceof String;
@@ -1394,7 +1394,7 @@ const makeRollsForIDs = async (ids,options={}) => {
13941394
g.roll.push(bonus);
13951395

13961396
if(options.manualBonus){
1397-
g.roll.push( options.manualBonus );
1397+
g.roll.push( `${options.manualBonus}`.trim() );
13981398
}
13991399
g.label = rolladj.label||(rolladj.hasOwnProperty('index') ? `Rule #${rolladj.index+1}` : `No Matching Rule`);
14001400
g.formula = initFunc(g,rolladj);

0 commit comments

Comments
 (0)