This commit is contained in:
Dapoolp 2025-08-06 18:48:10 +02:00
parent 5a7d1d204c
commit 9ce66e93fb
3 changed files with 3 additions and 3 deletions

View file

@ -132,7 +132,7 @@ export default class DHActorRoll extends foundry.abstract.TypeDataModel {
if(this.targetSelection === true) {
this.targetShort = this.targets.reduce((a,c) => {
if(c.hit) a.hit += 1;
else c.miss += 1;
else a.miss += 1;
return a;
}, {hit: 0, miss: 0})
}