Fix for no actor dice picker

This commit is contained in:
Vlyan
2021-01-06 20:10:24 +01:00
parent a9fd5ebd92
commit 8aced20f95
2 changed files with 9 additions and 6 deletions

View File

@@ -11,7 +11,7 @@ export class HelpersL5r5e {
return CONFIG.l5r5e.stances.map((e) => ({
id: e,
label: game.i18n.localize(`l5r5e.rings.${e}`),
value: actor?.data?.data?.rings?.[e] || 0,
value: actor?.data?.data?.rings?.[e] || 1,
}));
}