Fix regression with actions list

This commit is contained in:
Carlos Fernandez 2026-04-21 15:18:59 -04:00
parent 5bde5a8fe5
commit 61a453a504
4 changed files with 7 additions and 5 deletions

View file

@ -17,7 +17,7 @@ export default class D20RollDialog extends HandlebarsApplicationMixin(Applicatio
this.action =
config.data.attack?._id == config.source.action
? config.data.attack
: this.item.system.actions?.find(a => a.id === config.source.action);
: this.item.system.actionsList?.find(a => a.id === config.source.action);
}
}