From a55748d6fc768a761a9abe33c989a7a10b39ca4d Mon Sep 17 00:00:00 2001 From: Oliver Date: Sat, 2 May 2026 19:28:13 -0600 Subject: [PATCH] Remove log that slipped through the cracks --- module/documents/Macro.mjs | 1 - 1 file changed, 1 deletion(-) diff --git a/module/documents/Macro.mjs b/module/documents/Macro.mjs index 53d4ced..3cc3aeb 100644 --- a/module/documents/Macro.mjs +++ b/module/documents/Macro.mjs @@ -5,7 +5,6 @@ export class TAFMacro extends foundry.documents.Macro { // Check Items on Actors game.actors.forEach(actor => { actor.items.forEach(item => { - console.log(item.uuid, `owned by`, actor.uuid); if (item.system.trigger === this.uuid) { itemsUsingMacro.add(item.uuid); };