- Added "send to chat" button on items sheets.

- Minor fixe on editable state.
This commit is contained in:
Vlyan
2021-08-01 16:45:11 +02:00
parent f1af271a3b
commit f3bbcd7499
15 changed files with 87 additions and 22 deletions

View File

@@ -177,7 +177,7 @@ export class BaseSheetL5r5e extends ActorSheet {
*/
async _onDrop(event) {
// *** Everything below here is only needed if the sheet is editable ***
if (!this.options.editable) {
if (!this.isEditable) {
return;
}
@@ -317,7 +317,7 @@ export class BaseSheetL5r5e extends ActorSheet {
game.l5r5e.HelpersL5r5e.commonListeners(html, this.actor);
// *** Everything below here is only needed if the sheet is editable ***
if (!this.options.editable) {
if (!this.isEditable) {
return;
}