mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-03-07 14:36:13 +01:00
Fixed typo in levelupViewMode domain card option
This commit is contained in:
parent
4ce8fbb84c
commit
73a3442f7f
1 changed files with 4 additions and 1 deletions
|
|
@ -70,7 +70,10 @@ export default class DhlevelUpViewMode extends HandlebarsApplicationMixin(Applic
|
||||||
return checkbox;
|
return checkbox;
|
||||||
});
|
});
|
||||||
|
|
||||||
let label = game.i18n.localize(option.label);
|
let label =
|
||||||
|
optionKey === 'domainCard'
|
||||||
|
? game.i18n.format(option.label, { maxLevel: tier.levels.end })
|
||||||
|
: game.i18n.localize(option.label);
|
||||||
return {
|
return {
|
||||||
label: label,
|
label: label,
|
||||||
checkboxGroups: chunkify(checkboxes, option.minCost, chunkedBoxes => {
|
checkboxGroups: chunkify(checkboxes, option.minCost, chunkedBoxes => {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue