Skip to content

Commit

Permalink
fix NPC special attacks
Browse files Browse the repository at this point in the history
  • Loading branch information
Muttley committed Nov 16, 2024
1 parent 5e76af6 commit 09ecd59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/src/documents/ActorSD.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -1435,7 +1435,7 @@ export default class ActorSD extends Actor {
title = game.i18n.localize("SHADOWDARK.chat.use_ability.title");

// does ability use on a roll check?
if (item.system.ability !== "") {
if (item.system.ability) {
options = foundry.utils.mergeObject({target: item.system.dc}, options);
const result = await this.rollAbility(
item.system.ability,
Expand Down

0 comments on commit 09ecd59

Please sign in to comment.