This commit is contained in:
WBHarry 2026-05-10 21:49:34 +02:00
parent 63b986f6e4
commit 20cf7dadcf
2 changed files with 2 additions and 2 deletions

View file

@ -409,7 +409,7 @@
"openCountdowns": "Countdowns", "openCountdowns": "Countdowns",
"adversaryCategories": { "adversaryCategories": {
"friendly": "Friendly", "friendly": "Friendly",
"neutral": "Neutral" "adversaries": "Adversaries"
} }
}, },
"CompendiumBrowserSettings": { "CompendiumBrowserSettings": {

View file

@ -9,6 +9,6 @@
{{> 'systems/daggerheart/templates/ui/combatTracker/combatTrackerSection.hbs' this title=(localize "DAGGERHEART.APPLICATIONS.CombatTracker.adversaryCategories.friendly") turns=this.friendlies}} {{> 'systems/daggerheart/templates/ui/combatTracker/combatTrackerSection.hbs' this title=(localize "DAGGERHEART.APPLICATIONS.CombatTracker.adversaryCategories.friendly") turns=this.friendlies}}
{{/if}} {{/if}}
{{#if (gt this.adversaries.length 0)}} {{#if (gt this.adversaries.length 0)}}
{{> 'systems/daggerheart/templates/ui/combatTracker/combatTrackerSection.hbs' this title=(localize "DAGGERHEART.GENERAL.Adversary.plural") turns=this.adversaries}} {{> 'systems/daggerheart/templates/ui/combatTracker/combatTrackerSection.hbs' this title=(localize "DAGGERHEART.APPLICATIONS.CombatTracker.adversaryCategories.adversaries") turns=this.adversaries}}
{{/if}} {{/if}}
</div> </div>