Add isRange for an attribute item

This commit is contained in:
Oliver 2026-04-22 17:59:55 -06:00
parent f932c6d774
commit b856708b93

View file

@ -32,4 +32,8 @@ export class AttributeItemData extends foundry.abstract.TypeDataModel {
}),
};
};
get isRange() {
return this.max !== null;
};
};