10 lines
182 B
JavaScript
10 lines
182 B
JavaScript
export class LesOubliesItem extends Item {
|
|
getChatData() {
|
|
const data = super.getChatData()
|
|
return {
|
|
...data,
|
|
description: this.system.description,
|
|
}
|
|
}
|
|
}
|