9 lines
235 B
JavaScript
9 lines
235 B
JavaScript
if (args.weapon && this.item.system.usesLocation(args.weapon))
|
|
{
|
|
args.bleedingHand = true;
|
|
let success = await this.effect.manualScripts[0].execute({actor: this.actor})
|
|
if (!success)
|
|
{
|
|
args.abort = true;
|
|
}
|
|
} |