From ffc3aa6e41ce5439171f0d44f9eb0473be4602b8 Mon Sep 17 00:00:00 2001 From: Jeff Hitchcock Date: Tue, 17 Sep 2024 12:48:10 -0700 Subject: [PATCH] Update concentration hooks to include activity --- wiki/Hooks.md | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/wiki/Hooks.md b/wiki/Hooks.md index 370a561907..b10c049ad4 100644 --- a/wiki/Hooks.md +++ b/wiki/Hooks.md @@ -46,21 +46,23 @@ Fires after an ability save has been rolled. Fires before a concentration effect is created. Returning `false` will prevent concentration effect from being created. -| Name | Type | Description | -| ---------- | ------- | -------------------------------------- | -| actor | Actor5e | The actor initiating concentration. | -| item | Item5e | The item that will be concentrated on. | -| effectData | object | Data used to create the ActiveEffect. | +| Name | Type | Description | +| ---------- | -------- | ---------------------------------------------- | +| actor | Actor5e | The actor initiating concentration. | +| item | Item5e | The item that will be concentrated on. | +| effectData | object | Data used to create the ActiveEffect. | +| activity | Activity | The activity that triggered the concentration. | ### `dnd5e.beginConcentrating` Fires after a concentration effect is created. -| Name | Type | Description | -| ------ | -------------- | --------------------------------------- | -| actor | Actor5e | The actor initiating concentration. | -| item | Item5e | The item that is being concentrated on. | -| effect | ActiveEffect5e | The created ActiveEffect instance. | +| Name | Type | Description | +| -------- | -------------- | ---------------------------------------------- | +| actor | Actor5e | The actor initiating concentration. | +| item | Item5e | The item that is being concentrated on. | +| effect | ActiveEffect5e | The created ActiveEffect instance. | +| activity | Activity | The activity that triggered the concentration. | ### `dnd5e.preEndConcentration`