Remove log that slipped through the cracks

This commit is contained in:
Oliver 2026-05-02 19:28:13 -06:00
parent 77413687e9
commit a55748d6fc

View file

@ -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);
};