This commit is contained in:
CDeenen
2020-12-28 05:31:59 +01:00
parent 561e3f4bd0
commit 2947c54eb8
31 changed files with 319 additions and 22 deletions

View File

@@ -19,7 +19,7 @@ export class CombatTracker{
update(settings,context){
this.active = true;
let ctFunction = settings.combatTrackerFunction;
if (ctFunction == undefined) ctFunction == 'startStop';
if (ctFunction == undefined) ctFunction = 'startStop';
let combat = game.combat;
@@ -119,7 +119,7 @@ export class CombatTracker{
if (combat == null || combat == undefined) return;
let ctFunction = settings.combatTrackerFunction;
if (ctFunction == undefined) ctFunction == 'startStop';
if (ctFunction == undefined) ctFunction = 'startStop';
if (ctFunction == 'startStop'){
let src;
let background;