diff --git a/module/applications/hud/tokenHUD.mjs b/module/applications/hud/tokenHUD.mjs index bd846da5..a5fd719f 100644 --- a/module/applications/hud/tokenHUD.mjs +++ b/module/applications/hud/tokenHUD.mjs @@ -89,7 +89,7 @@ export default class DHTokenHUD extends foundry.applications.hud.TokenHUD { setTimeout(() => token.document.delete(), animationDuration); } } else { - const activeScene = game.scenes.find(x => x.active); + const activeScene = game.scenes.find(x => x.id === game.user.viewedScene); const partyTokenData = []; for (let member of this.actor.system.partyMembers) { const data = await member.getTokenDocument();