From 1513cd4afb36cab1a893e4efc7b8f60fba5b1dde Mon Sep 17 00:00:00 2001 From: Jeff Hitchcock Date: Fri, 13 Sep 2024 11:31:56 -0700 Subject: [PATCH] Fix JSDocs for tool check hooks to match actual hook name --- module/documents/actor/actor.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/documents/actor/actor.mjs b/module/documents/actor/actor.mjs index 47605cd4a7..78ce5ff1e3 100644 --- a/module/documents/actor/actor.mjs +++ b/module/documents/actor/actor.mjs @@ -1487,7 +1487,7 @@ export default class Actor5e extends SystemDocumentMixin(Actor) { /** * A hook event that fires before a tool check is rolled for an Actor. - * @function dnd5e.preRollRool + * @function dnd5e.preRollToolCheck * @memberof hookEvents * @param {Actor5e} actor Actor for which the tool check is being rolled. * @param {D20RollConfiguration} config Configuration data for the pending roll. @@ -1500,7 +1500,7 @@ export default class Actor5e extends SystemDocumentMixin(Actor) { /** * A hook event that fires after a tool check has been rolled for an Actor. - * @function dnd5e.rollTool + * @function dnd5e.rollToolCheck * @memberof hookEvents * @param {Actor5e} actor Actor for which the tool check has been rolled. * @param {D20Roll} roll The resulting roll.