mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-07-21 18:09:54 +02:00
Fixed TagTeamDialog
This commit is contained in:
parent
d33277f2be
commit
bbf27e5b4d
4 changed files with 48 additions and 25 deletions
|
|
@ -41,11 +41,12 @@ export class ChatDamageData extends foundry.abstract.DataModel {
|
|||
}
|
||||
|
||||
_prepareRolls() {
|
||||
this.main &&= Roll.fromData({
|
||||
this.main &&= Roll.fromData({
|
||||
...this.main,
|
||||
options: {
|
||||
...this.main.options,
|
||||
isCritical: this.main.options.isCritical || this.isCritical
|
||||
isCritical:
|
||||
this.main.options.isCritical === false ? false : (this.main.options.isCritical || this.isCritical)
|
||||
}
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue