v12 fixes

- Removal of async
- CHAT_MESSAGE_TYPES to CHAT_MESSAGE_STYLES : roll removed
- Math.clamped to Math.clamp
- fixed debounce scope
This commit is contained in:
Vlyan
2024-05-24 12:30:02 +02:00
parent 2eead2f22f
commit bff5ed7865
5 changed files with 15 additions and 18 deletions

View File

@@ -91,7 +91,7 @@ export class RollnKeepDialog extends FormApplication {
* @return {boolean}
*/
get isOwner() {
return this._message?.isAuthor || this.messageRoll.l5r5e.actor?.isOwner || this._message?.isOwner || false;
return this._message?.isAuthor || this.messageRoll?.l5r5e.actor?.isOwner || this._message?.isOwner || false;
}
/**