RC-110 | Prevent Armour/Shield Equipping based on slots

This commit is contained in:
Oliver-Akins 2025-02-16 11:41:32 -07:00
parent b33d7b59eb
commit 4ccfc03e59
6 changed files with 94 additions and 18 deletions

View file

@ -2,7 +2,7 @@ export class RipCryptItem extends Item {
get quantifiedName() {
if (this.system.quantity != null && this.system.quantity !== 1) {
return `${this.name} (${this.system.quantity})`;
}
};
return this.name;
};
};