Apply PR feedback

This commit is contained in:
Oliver-Akins 2025-02-15 15:41:48 -07:00
parent 26534ec0ca
commit ec5ad470f8
6 changed files with 51 additions and 33 deletions

View file

@ -14,8 +14,10 @@ export function registerMetaSettings() {
type: String,
config: false,
requiresReload: false,
onChange: () => {
ui.crypt.render({ parts: [ `fate` ] });
onChange: async () => {
await ui.crypt.render({ parts: [ `fate` ] });
await game.combat.setupTurns();
await ui.combat.render({ parts: [ `tracker` ] });
},
});