Make it so that the actor can reject embedded items using the Item pre-create hook

This commit is contained in:
Oliver-Akins 2024-01-13 16:03:43 -07:00
parent 1701547e57
commit 3791a7199c
4 changed files with 43 additions and 12 deletions

View file

@ -1,6 +1,11 @@
import AspectItem from "./Aspect.mjs";
/**
* @extends {Item}
*/
export class ItemHandler extends Item {
/** @override */
itemTypes = {
aspect: AspectItem,
};