parent
a611838d6c
commit
65820e609e
|
@ -388,6 +388,11 @@ export class AcksActor extends Actor {
|
||||||
dmgParts.push(data.damage.mod.melee);
|
dmgParts.push(data.damage.mod.melee);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Add Missile mod to damage
|
||||||
|
if (attData.roll.type == "missile") {
|
||||||
|
dmgParts.push(data.damage.mod.missile);
|
||||||
|
}
|
||||||
|
|
||||||
// Damage roll
|
// Damage roll
|
||||||
AcksDice.Roll({
|
AcksDice.Roll({
|
||||||
event: options.event,
|
event: options.event,
|
||||||
|
@ -456,6 +461,10 @@ export class AcksActor extends Actor {
|
||||||
if (options.type == "melee") {
|
if (options.type == "melee") {
|
||||||
dmgParts.push(data.damage.mod.melee);
|
dmgParts.push(data.damage.mod.melee);
|
||||||
}
|
}
|
||||||
|
// Add Missile mod to damage
|
||||||
|
if (options.type == "missile") {
|
||||||
|
dmgParts.push(data.damage.mod.missile);
|
||||||
|
}
|
||||||
const rollData = {
|
const rollData = {
|
||||||
actor: this.data,
|
actor: this.data,
|
||||||
item: attData.item,
|
item: attData.item,
|
||||||
|
|
Loading…
Reference in New Issue