Files
2026-05-02 09:16:24 +02:00

10 lines
182 B
JavaScript

export class LesOubliesItem extends Item {
getChatData() {
const data = super.getChatData()
return {
...data,
description: this.system.description,
}
}
}