Fixed a bug with rendering applications that depend on the database mutating the object by reference

This commit is contained in:
Oliver-Akins 2025-05-24 15:00:12 -06:00
parent 76fe473cd1
commit c7197641b6

View file

@ -181,7 +181,7 @@ export class Database {
*/ */
static async render(opts) { static async render(opts) {
for (const app of this._apps.values()) { for (const app of this._apps.values()) {
app.render(opts); app.render(foundry.utils.deepClone(opts));
}; };
}; };