Skip to content

Commit

Permalink
Updated GroupInitiative to v0.9.41
Browse files Browse the repository at this point in the history
  • Loading branch information
shdwjk committed Jan 21, 2025
1 parent f379969 commit e45571b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions GroupInitiative/0.9.41/GroupInitiative.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const GroupInitiative = (() => { // eslint-disable-line no-unused-vars
const scriptName = "GroupInitiative";
const version = '0.9.41';
API_Meta.GroupInitiative.version = version;
const lastUpdate = 1737313521;
const lastUpdate = 1737482748;
const schemaVersion = 1.3;

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

if(options.manualBonus){
g.roll.push( options.manualBonus );
g.roll.push( `${options.manualBonus}`.trim() );
}
g.label = rolladj.label||(rolladj.hasOwnProperty('index') ? `Rule #${rolladj.index+1}` : `No Matching Rule`);
g.formula = initFunc(g,rolladj);
Expand Down
4 changes: 2 additions & 2 deletions GroupInitiative/GroupInitiative.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const GroupInitiative = (() => { // eslint-disable-line no-unused-vars
const scriptName = "GroupInitiative";
const version = '0.9.41';
API_Meta.GroupInitiative.version = version;
const lastUpdate = 1737313521;
const lastUpdate = 1737482748;
const schemaVersion = 1.3;

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

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

0 comments on commit e45571b

Please sign in to comment.