partial sync

This commit is contained in:
2021-01-09 09:54:08 +01:00
parent 06618746f9
commit 9f8db50a1d
3 changed files with 30 additions and 7 deletions

View File

@ -141,8 +141,10 @@ export class RdDActorSheet extends ActorSheet {
/* -------------------------------------------- */
async _onDrop(event) {
await RdDUtility.processItemDropEvent(this, event);
super._onDrop(event);
let toSuper = await RdDUtility.processItemDropEvent(this, event);
if ( toSuper) {
super._onDrop(event);
}
}
/* -------------------------------------------- */