Fixed a bug with rendering applications that depend on the database mutating the object by reference
This commit is contained in:
parent
76fe473cd1
commit
c7197641b6
1 changed files with 1 additions and 1 deletions
|
|
@ -181,7 +181,7 @@ export class Database {
|
|||
*/
|
||||
static async render(opts) {
|
||||
for (const app of this._apps.values()) {
|
||||
app.render(opts);
|
||||
app.render(foundry.utils.deepClone(opts));
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue