diff --git a/module/data/item/domainCard.mjs b/module/data/item/domainCard.mjs index 327dafce..9a14d45e 100644 --- a/module/data/item/domainCard.mjs +++ b/module/data/item/domainCard.mjs @@ -94,8 +94,10 @@ export default class DHDomainCard extends BaseDataItem { return false; } - if (!this.actor.system.loadoutSlot.available) { + if (!this.actor.system.loadoutSlot.available && !this.loadoutIgnore) { data.system.inVault = true; + await this.updateSource({ inVault: true }); + ui.notifications.warn(game.i18n.localize('DAGGERHEART.UI.Notifications.loadoutMaxReached')); } } }