diff --git a/module/sheets/WitcherActorSheet.js b/module/sheets/WitcherActorSheet.js index 4a07a986..7b27ce10 100644 --- a/module/sheets/WitcherActorSheet.js +++ b/module/sheets/WitcherActorSheet.js @@ -2628,4 +2628,9 @@ export default class WitcherActorSheet extends ActorSheet { } return totalStats; } + + /** Do not delete. This method is here to give external modules the possibility to make skill rolls. */ + async _onSkillRoll(statNum, skillNum) { + rollSkillCheck(this.actor, statNum, skillNum); + } }