fix formapp constructor

This commit is contained in:
Vlyan
2020-12-23 21:00:47 +01:00
parent cf06635b01
commit 6659087a82
4 changed files with 6 additions and 6 deletions

View File

@@ -69,8 +69,8 @@ export class DicePickerDialog extends FormApplication {
*
* @param options actor, actorId, ringId, skillId, skillCatId, difficulty, difficultyHidden
*/
constructor(options = null) {
super(options);
constructor(options = {}) {
super({}, options);
// Try to get Actor from: options, first selected token or player's selected character
[