Allow items links in editors
This commit is contained in:
@@ -56,7 +56,8 @@ export class SoSItemSheet extends ItemSheet {
|
||||
effects: this.object.effects.map(e => foundry.utils.deepClone(e.system)),
|
||||
limited: this.object.limited,
|
||||
options: this.options,
|
||||
owner: this.document.isOwner
|
||||
owner: this.document.isOwner,
|
||||
description: await TextEditor.enrichHTML(this.object.system.description, {async: true}),
|
||||
};
|
||||
|
||||
formData.isGM = game.user.isGM;
|
||||
@@ -66,6 +67,12 @@ export class SoSItemSheet extends ItemSheet {
|
||||
if ( objectData.type == 'skill' && this.object.options?.actor) {
|
||||
formData.skillExperienceList = this.object.options.actor.getSkillExperience( objectData.name )
|
||||
}
|
||||
if ( objectData.type == 'geneline') {
|
||||
formData.weakness = await TextEditor.enrichHTML(this.object.system.weakness, {async: true})
|
||||
}
|
||||
if ( objectData.type == 'malady') {
|
||||
formData.notes = await TextEditor.enrichHTML(this.object.system.notes, {async: true})
|
||||
}
|
||||
return formData;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user