Prevent item creation and hide the item tab

This commit is contained in:
Eldritch-Oliver 2025-09-04 19:35:11 -06:00
parent f3a3a65be1
commit 92e7ec1c72
2 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1,7 @@
const { Item } = foundry.documents;
export class TAFItem extends Item {
async _preCreate() {
return false;
};
};