Skip to content

Commit

Permalink
Recheck auras when token sizes change (foundryvtt#4421)
Browse files Browse the repository at this point in the history
  • Loading branch information
stwlam authored Oct 10, 2022
1 parent 194772a commit c0466bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/module/scene/token-document/document.ts
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ class TokenDocumentPF2e<TActor extends ActorPF2e = ActorPF2e> extends TokenDocum
this._onUpdate(changes, {}, game.user.id);
}

if (Object.keys(auraChanges).length > 0) {
if (Object.keys(auraChanges).length > 0 || "width" in changes || "height" in changes) {
this.scene?.checkAuras();
}

Expand Down

0 comments on commit c0466bd

Please sign in to comment.