Implement initiative rolling within Foundry
This commit is contained in:
parent
1002b1387c
commit
914b6e5862
4 changed files with 28 additions and 3 deletions
|
|
@ -96,5 +96,10 @@ export class ActorHandler extends Actor {
|
|||
return this.proxyFunction("_preUpdate", ...args);
|
||||
};
|
||||
|
||||
useRestDie() { return this.proxyFunction("useRestDie"); };
|
||||
getRollData() {
|
||||
if (!this.fn?.getRollData) return {};
|
||||
return this.fn?.getRollData.bind(this)();
|
||||
};
|
||||
|
||||
useRestDie() {return this.proxyFunction("useRestDie")};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue