Skip to content

Commit

Permalink
fix: deepscan issue
Browse files Browse the repository at this point in the history
  • Loading branch information
marvin9257 committed Jan 24, 2025
1 parent 3b6019b commit 056d443
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/module/sheets/TwodsixShipSheet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -275,8 +275,8 @@ export class TwodsixShipSheet extends foundry.applications.api.HandlebarsApplica
ev.dataTransfer.setData("text/plain", JSON.stringify({
"type": "Actor",
"data": actor, //Not Certain if this should be system instead
"actorId": actor.id, //Why did this refer to ship actor previously?
"id": actor.id, //Necesssary?
"actorId": actor?.id, //Why did this refer to ship actor previously?
"id": actor?.id, //Necesssary?
"uuid": actor?.uuid
}));
} else if (ev.target?.classList.contains("ship-position-action")) {
Expand Down

0 comments on commit 056d443

Please sign in to comment.