new companion sheet templates

This commit is contained in:
moliloo 2025-07-03 01:32:05 -03:00
parent 9fb9a4af55
commit 502ac1cca5
18 changed files with 857 additions and 21 deletions

View file

@ -21,7 +21,8 @@ export default class RegisterHandlebarsHelpers {
lte: this.lte,
gte: this.gte,
and: this.and,
or: this.or
or: this.or,
getActor: this.getActor
});
}
@ -137,4 +138,8 @@ export default class RegisterHandlebarsHelpers {
console.log(a);
return a;
}
static getActor(actorUuid) {
return fromUuid(actorUuid);
}
}